Skip to content

Instantly share code, notes, and snippets.

@LachlanArthur
Last active May 21, 2020 00:53
Show Gist options
  • Save LachlanArthur/0428570737edd896bbc1fdef73568a1d to your computer and use it in GitHub Desktop.
Save LachlanArthur/0428570737edd896bbc1fdef73568a1d to your computer and use it in GitHub Desktop.
# 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