-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add New Windows 11 Specific Toggle - The 'Taskbar Alignment' Toggle (#…
- Loading branch information
Showing
4 changed files
with
56 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
function Invoke-WinUtilTaskbarAlignment { | ||
<# | ||
.SYNOPSIS | ||
Switches between Center & Left Taskbar Alignment | ||
.PARAMETER Enabled | ||
Indicates whether to make Taskbar Alignment Center or Left | ||
#> | ||
Param($Enabled) | ||
Try{ | ||
if ($Enabled -eq $false){ | ||
Write-Host "Making Taskbar Alignment to the Center" | ||
$value = 1 | ||
} | ||
else { | ||
Write-Host "Making Taskbar Alignment to the Left" | ||
$value = 0 | ||
} | ||
$Path = "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" | ||
Set-ItemProperty -Path $Path -Name "TaskbarAl" -Value $value | ||
} | ||
Catch [System.Security.SecurityException] { | ||
Write-Warning "Unable to set $Path\$Name to $value due to a Security Exception" | ||
} | ||
Catch [System.Management.Automation.ItemNotFoundException] { | ||
Write-Warning $psitem.Exception.ErrorRecord | ||
} | ||
Catch{ | ||
Write-Warning "Unable to set $Name due to unhandled exception" | ||
Write-Warning $psitem.Exception.StackTrace | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters