Last active
May 21, 2020 00:53
-
-
Save LachlanArthur/0428570737edd896bbc1fdef73568a1d to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# Install Scoop | |
Set-ExecutionPolicy RemoteSigned -scope CurrentUser | |
Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh') | |
# Exclude scoop dirs from Windows Defender | |
scoop install sudo | |
sudo Add-MpPreference -ExclusionPath "$env:HOME\scoop" | |
sudo Add-MpPreference -ExclusionPath "$env:ProgramData\scoop" | |
# Enable parallel downloads | |
scoop install aria2 | |
# Install apps | |
scoop install steam 7zip windows-terminal cacert go nvm php wp-cli | |
# Long Paths | |
sudo Set-ItemProperty 'HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem' -Name 'LongPathsEnabled' -Value 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment