Skip to content

Instantly share code, notes, and snippets.

@SethCalkins
Forked from Griffingj/MacifyWindows10.txt
Created April 12, 2017 00:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SethCalkins/e7da5302002a30855734c22daeb4a528 to your computer and use it in GitHub Desktop.
Save SethCalkins/e7da5302002a30855734c22daeb4a528 to your computer and use it in GitHub Desktop.
Macify Windows 10
// 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