Last active
April 29, 2020 14:53
-
-
Save jirkafm/021ac9ab5819b9c29f6d2fffc73b6f71 to your computer and use it in GitHub Desktop.
Setup Windows development machine through powershell with choco
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
# 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