Skip to content

Instantly share code, notes, and snippets.

@phoenixweiss
Last active December 30, 2023 17:08
Show Gist options
  • Save phoenixweiss/13ebd139a65848aa6ad25aca01bb5fae to your computer and use it in GitHub Desktop.
Save phoenixweiss/13ebd139a65848aa6ad25aca01bb5fae to your computer and use it in GitHub Desktop.
My Chocolatey software list

To use it run in PowerShell:

Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://gist.githubusercontent.com/phoenixweiss/13ebd139a65848aa6ad25aca01bb5fae/raw/0871b3c90d03fb5778baeb683e87714118a5a147/choco.ps1'))
$applicationList = @(
"7zip"
"adobereader"
"chocolatey-compatibility.extension"
"chocolatey-core.extension"
"chocolatey-dotnetfx.extension"
"chocolatey-windowsupdate.extension"
"chocolateygui"
"dotnetfx"
"git"
"pyenv-win"
"keeweb"
"powershell-core"
"telegram"
"vlc"
"vscode"
"winamp"
"mysql"
"mysql.workbench"
"vcredist140"
"vcredist2015"
"transmission"
"etcher"
"x-mouse-button-control"
);
foreach ($app in $applicationList) {
choco install -y $app
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment