Last active
December 5, 2019 20:58
-
-
Save hkboujrida/cd35ff5d938cd34a852f08debc30a8b0 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
Set-ExecutionPolicy Bypass -Scope Process -Force; | |
iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) | |
#framework section | |
choco install dotnetcore-sdk -y | |
choco install nodejs -y | |
#softs | |
choco install googlechrome -y | |
choco install 7zip.install -y | |
#dev section | |
choco install powershell-core -y | |
choco install git -y | |
choco install vscode -y | |
choco install vscode-icons -y | |
choco install docker-desktop -y | |
choco install python2 -y | |
choco install microsoft-build-tools -y | |
choco install azure-cli -y | |
choco install postman -y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment