Skip to content

Instantly share code, notes, and snippets.

@jirkafm
Last active April 29, 2020 14:53
Show Gist options
  • Save jirkafm/021ac9ab5819b9c29f6d2fffc73b6f71 to your computer and use it in GitHub Desktop.
Save jirkafm/021ac9ab5819b9c29f6d2fffc73b6f71 to your computer and use it in GitHub Desktop.
Setup Windows development machine through powershell with choco
# Prerequisite:
# Run powershell with admin privileges
$file = 'win-env.ps1'
(New-Object System.Net.WebClient).DownloadFile('https://raw.githubusercontent.com/jirkafm/my-env/master/win/win-env.ps1', $file)
Set-ExecutionPolicy Bypass -Scope Process -Force;
iex "./$file all"
Remove-Item $file
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment