-
-
Save SethCalkins/e7da5302002a30855734c22daeb4a528 to your computer and use it in GitHub Desktop.
Macify Windows 10
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
// Set the horiztal and vertial scrolling to inverse of Windows | |
Get-ItemProperty HKLM:\SYSTEM\CurrentControlSet\Enum\HID\*\*\Device` Parameters FlipFlopWheel -EA 0 | ForEach-Object { Set-ItemProperty $_.PSPath FlipFlopWheel 1 } | |
Get-ItemProperty HKLM:\SYSTEM\CurrentControlSet\Enum\HID\*\*\Device` Parameters FlipFlopHScroll -EA 0 | ForEach-Object { Set-ItemProperty $_.PSPath FlipFlopHScroll 1 } | |
// Install Scoop Package Manager | |
set-executionpolicy unrestricted -s cu | |
iex (new-object net.webclient).downloadstring('https://get.scoop.sh') | |
scoop install curl 7zip git grep touch pshazz openssh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment