-
-
Save sergeyf/2b6d3a43039e9cd2300c0e8ea661bb1a to your computer and use it in GitHub Desktop.
Chocolatey install script
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
:: Install choco .exe and add choco to PATH | |
@powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin" | |
:: for ease of updating | |
choco install ChocolateyGUI -fy | |
:: basics | |
choco install googlechrome -fy | |
choco install agentransack -fy | |
choco install vlc -fy | |
choco install 7zip.install -fy | |
choco install steam -fy | |
:: networking | |
choco install winscp -fy | |
choco install openvpn -fy | |
choco install putty.install -fy | |
:: file backup | |
choco install dropbox -fy | |
choco install google-backup-and-sync -fy | |
:: coding | |
choco install git.install -fy | |
choco install pycharm-community -fy | |
choco install notepadplusplus.install -fy | |
choco install cmder -fy | |
choco install clink -fy | |
choco install visualstudio2015community -fy | |
choco install cmake.install -fy | |
:: communication | |
choco install slack -fy | |
choco install skype -fy | |
:: yarrr | |
choco install soulseek -fy | |
choco install qbittorrent -fy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment