Last active
March 24, 2019 13:22
-
-
Save sengupta-saikat/4a47d2a11807c8e6534704637173c282 to your computer and use it in GitHub Desktop.
admin powershell script to install all my apps using chocolatey after a fresh OS installation
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
REM script to install all required apps post fresh OS installation | |
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) | |
choco -? | |
choco feature enable -n allowGlobalConfirmation | |
choco install 7zip | |
choco install jdk8 | |
choco install groovy | |
choco install maven | |
choco install python | |
choco install cmdermini | |
choco install vlc | |
choco install googlechrome | |
choco install firefox | |
choco install vscode | |
choco install atom | |
choco install notepadplusplus | |
choco install git | |
choco install wget | |
choco install pip | |
choco install postman | |
choco install virtualbox | |
choco install winscp | |
choco install curl | |
choco install treesizefree | |
choco install everything | |
choco install nodejs-lts | |
choco install sysinternals | |
choco install wireshark | |
choco install tixati | |
choco install postman | |
choco install jq | |
choco install rufus | |
choco install putty | |
choco install intellijidea-community |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment