Update install.ps1

This commit is contained in:
Felipe Augusto
2021-02-05 15:28:25 -03:00
committed by GitHub
parent 7ccb04ba7c
commit 9a7780b8c3
+7 -6
View File
@@ -7,13 +7,12 @@ choco feature enable -n=allowGlobalConfirmation;
<# programs to install #> <# programs to install #>
@( @(
"git" "git"
,"netfx-4.8-devpack" ,"dotnet-5.0-sdk"
,"microsoft-edge"
,"dotnetcore-sdk" ,"dotnetcore-sdk"
,"microsoft-edge"
,"visualstudio2019professional" ,"visualstudio2019professional"
,"microsoft-windows-terminal" ,"microsoft-windows-terminal"
,"azure-cli" ,"azure-cli"
,"cmder"
,"wireshark" ,"wireshark"
,"westwindwebsurge" ,"westwindwebsurge"
,"sql-server-management-studio" ,"sql-server-management-studio"
@@ -23,15 +22,17 @@ choco feature enable -n=allowGlobalConfirmation;
,"docker-desktop" ,"docker-desktop"
,"nodejs-lts" ,"nodejs-lts"
,"postman" ,"postman"
,"notepadplusplus"
,"vim" ,"vim"
,"sublimetext3"
,"typora"
,"microsoft-teams") + ($pins = @("vscode")) | % { choco install $_ }; ,"microsoft-teams") + ($pins = @("vscode")) | % { choco install $_ };
<# avoiding future upgrades of these following programs. #> $pins | % { choco pin add -n="$_" }; <# avoiding future upgrades of these following programs. #> $pins | % { choco pin add -n="$_" };
<# excluded <# excluded
,"archi" ,"archi"
,"cmder"
,"hyper" ,"hyper"
,"netfx-4.8-devpack"
,"notepadplusplus"
,"sublimetext3"
,"typora"
#> #>