Last active
August 13, 2020 20:30
-
-
Save iamsilvio/e55eff6ab153361efd0384bf159cec89 to your computer and use it in GitHub Desktop.
disable Windows 10 Mouse Properties -> Pointer Options | Enhance pointer precision AKA GamerMode
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
$RegKey ="HKCU:\Control Panel\Mouse" | |
Set-ItemProperty -Path $RegKey -Name MouseSpeed -Value 0 | |
Set-ItemProperty -Path $RegKey -Name MouseThreshold1 -Value 0 | |
Set-ItemProperty -Path $RegKey -Name MouseThreshold2 -Value 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment