Last active
October 28, 2020 22:46
-
-
Save dariuszparys/6b9e101bae0c2eebd0b375955d50ba5b to your computer and use it in GitHub Desktop.
Development tools installation with Chocolatey for Windows
This file contains 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-Location $env:USERPROFILE | |
If ( ! ( Test-Path $PROFILE ) ) { New-Item -Force -ItemType File -Path $PROFILE; Add-Content -Path $PROFILE -Encoding UTF8 -Value "# Powershell Profile"; } | |
Set-ExecutionPolicy Bypass -Scope CurrentUser -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) | |
choco feature enable --name allowGlobalConfirmation | |
# Administrator Powershell | |
choco install firacode | |
choco install cascadiafonts | |
choco install git.install --params "/GitAndUnixToolsOnPath /WindowsTerminal /SChannel" | |
choco install kubernetes-cli | |
choco install kubernetes-helm | |
choco install vscode | |
choco install nvm | |
choco install golang | |
choco install python | |
choco install dotnetcore-sdk | |
choco install azure-cli | |
choco install terraform | |
choco install packer | |
choco install microsoft-windows-terminal | |
choco install docker-desktop | |
choco install poshgit | |
refreshenv | |
# User Powershell | |
nvm install 12.6.0 | |
nvm use 12.6.0 --default |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment