2024-02-03 11:42:14 -06:00
|
|
|
Function Invoke-WinUtilStickyKeys {
|
|
|
|
<#
|
|
|
|
.SYNOPSIS
|
|
|
|
Disables/Enables Sticky Keyss on startup
|
|
|
|
.PARAMETER Enabled
|
|
|
|
Indicates whether to enable or disable Sticky Keys on startup
|
|
|
|
#>
|
|
|
|
Param($Enabled)
|
2024-08-06 15:35:17 -05:00
|
|
|
try {
|
|
|
|
if ($Enabled -eq $false) {
|
2024-02-03 11:42:14 -06:00
|
|
|
Write-Host "Enabling Sticky Keys On startup"
|
|
|
|
$value = 510
|
2024-08-06 15:35:17 -05:00
|
|
|
} else {
|
2024-02-03 11:42:14 -06:00
|
|
|
Write-Host "Disabling Sticky Keys On startup"
|
|
|
|
$value = 58
|
|
|
|
}
|
|
|
|
$Path = "HKCU:\Control Panel\Accessibility\StickyKeys"
|
|
|
|
Set-ItemProperty -Path $Path -Name Flags -Value $value
|
2024-08-06 15:35:17 -05:00
|
|
|
} catch [System.Security.SecurityException] {
|
2024-02-03 11:42:14 -06: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-02-03 11:42:14 -06:00
|
|
|
Write-Warning $psitem.Exception.ErrorRecord
|
2024-08-06 15:35:17 -05:00
|
|
|
} catch {
|
2024-02-03 11:42:14 -06:00
|
|
|
Write-Warning "Unable to set $Name due to unhandled exception"
|
|
|
|
Write-Warning $psitem.Exception.StackTrace
|
|
|
|
}
|
2024-08-06 15:35:17 -05:00
|
|
|
}
|