2024-07-14 20:47:40 -05:00
|
|
|
function Invoke-WinUtilTaskbarAlignment {
|
|
|
|
<#
|
|
|
|
|
|
|
|
.SYNOPSIS
|
|
|
|
Switches between Center & Left Taskbar Alignment
|
|
|
|
|
|
|
|
.PARAMETER Enabled
|
|
|
|
Indicates whether to make Taskbar Alignment Center or Left
|
|
|
|
|
|
|
|
#>
|
|
|
|
Param($Enabled)
|
2024-08-06 15:35:17 -05:00
|
|
|
try {
|
|
|
|
if ($Enabled -eq $false) {
|
2024-07-14 20:47:40 -05:00
|
|
|
Write-Host "Making Taskbar Alignment to the Center"
|
|
|
|
$value = 1
|
2024-08-06 15:35:17 -05:00
|
|
|
} else {
|
2024-07-14 20:47:40 -05:00
|
|
|
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
|
2024-08-06 15:35:17 -05:00
|
|
|
} catch [System.Security.SecurityException] {
|
2024-07-14 20:47:40 -05:00
|
|
|
Write-Warning "Unable to set $Path\$Name to $value due to a Security Exception"
|
2024-08-06 15:35:17 -05:00
|
|
|
} catch [System.Management.Automation.ItemNotFoundException] {
|
2024-07-14 20:47:40 -05:00
|
|
|
Write-Warning $psitem.Exception.ErrorRecord
|
2024-08-06 15:35:17 -05:00
|
|
|
} catch {
|
2024-07-14 20:47:40 -05:00
|
|
|
Write-Warning "Unable to set $Name due to unhandled exception"
|
|
|
|
Write-Warning $psitem.Exception.StackTrace
|
|
|
|
}
|
|
|
|
}
|