Forum Discussion
AB21805
Jun 11, 2021Bronze Contributor
disable sticky keys
Hi All, How do I disable sticky keys via intune? Any ideas?
Nathan Blasac
Jun 11, 2021Iron Contributor
This setting resides in HKCU.
https://stackoverflow.com/questions/20748787/need-to-disable-sticky-keys-for-every-account-on-computer
You could deploy a PowerShell script via Intune that runs via user context.
https://stackoverflow.com/questions/20748787/need-to-disable-sticky-keys-for-every-account-on-computer
You could deploy a PowerShell script via Intune that runs via user context.
- AB21805Jun 11, 2021Bronze Contributor
- Jun 11, 2021That certainly doesn't look a valid powershell script, please send me a pm if you need further assistance
- Nathan BlasacJun 11, 2021Iron Contributor
That post identifies the keys. I don't think it's formatted in PowerShell. It looks like a .reg export. Here is an example of a script ive used in the past deployed via Intune in User context.
Perhaps you can use it as an example. I've used this in the past to flip keys.
New-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\People" -Name PeopleBand -Value 00000000 -PropertyType "DWORD" -Force