This commit is contained in:
Felipe Augusto
2020-11-13 13:52:19 -03:00
parent 279ca9e6d9
commit de50ff46d9
2 changed files with 44 additions and 1 deletions
+7 -1
View File
@@ -1 +1,7 @@
# chocolatey # Chocolatey
+ Abra o powershell como adminstrador;
+ Execute o comando abaixo;
+ Faça um café.
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/felipementel/chocolately/main/install.ps1'))
+37
View File
@@ -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"
#>