mirror of
https://github.com/W4RH4WK/Debloat-Windows-10.git
synced 2024-11-15 18:12:57 +00:00
add optimize input
This commit is contained in:
parent
92041a7707
commit
3032267957
@ -1,8 +1,10 @@
|
||||
# Description
|
||||
# This script will apply MarkC's mouse acceleration fix (for 100% DPI).
|
||||
# This script will apply MarkC's mouse acceleration fix (for 100% DPI) and
|
||||
# disable some accessibility features regarding keyboard input.
|
||||
|
||||
Import-Module -DisableNameChecking $PSScriptRoot\..\lib\reg-helper.psm1
|
||||
|
||||
echo "Apply MarkC's mouse acceleration fix"
|
||||
Import-Registry(@"
|
||||
[HKEY_CURRENT_USER\Control Panel\Mouse]
|
||||
"MouseSensitivity"="10"
|
||||
@ -24,3 +26,12 @@ Import-Registry(@"
|
||||
"MouseThreshold1"="0"
|
||||
"MouseThreshold2"="0"
|
||||
"@)
|
||||
|
||||
echo "Disable easy access keyboard stuff"
|
||||
Import-Registry(@"
|
||||
[HKEY_CURRENT_USER\Control Panel\Accessibility\StickyKeys]
|
||||
"Flags"="378"
|
||||
|
||||
[HKEY_CURRENT_USER\Control Panel\Accessibility\ToggleKeys]
|
||||
"Flags"="58"
|
||||
"@)
|
Loading…
Reference in New Issue
Block a user