initial
This commit is contained in:
+37
@@ -0,0 +1,37 @@
|
||||
<# chocolatey setup #>
|
||||
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'));
|
||||
|
||||
<# allowing globally confirmation #>
|
||||
choco feature enable -n=allowGlobalConfirmation;
|
||||
|
||||
<# programs to install #>
|
||||
@(
|
||||
"git"
|
||||
,"netfx-4.8-devpack"
|
||||
,"microsoft-edge"
|
||||
,"dotnetcore-sdk"
|
||||
,"visualstudio2019professional"
|
||||
,"microsoft-windows-terminal"
|
||||
,"azure-cli"
|
||||
,"cmder"
|
||||
,"wireshark"
|
||||
,"westwindwebsurge"
|
||||
,"sql-server-management-studio"
|
||||
,"robo3t"
|
||||
,"azure-data-studio"
|
||||
,"mobaxterm"
|
||||
,"docker-desktop"
|
||||
,"nodejs-lts"
|
||||
,"postman"
|
||||
,"notepadplusplus"
|
||||
,"vim"
|
||||
,"sublimetext3"
|
||||
,"typora"
|
||||
,"microsoft-teams") + ($pins = @("vscode")) | % { choco install $_ };
|
||||
|
||||
<# avoiding future upgrades of these following programs. #> $pins | % { choco pin add -n="$_" };
|
||||
|
||||
<# excluded
|
||||
,"archi"
|
||||
,"hyper"
|
||||
#>
|
||||
Reference in New Issue
Block a user