Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@bogdanbujdea
Last active January 3, 2022 23:24
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bogdanbujdea/5252089afa8fa265a69908a9f97c0b0f to your computer and use it in GitHub Desktop.
Save bogdanbujdea/5252089afa8fa265a69908a9f97c0b0f to your computer and use it in GitHub Desktop.
Chocolatey script for installing apps after reinstalling Windows
# Simple environment setup script
# Uncomment the command below if you don't want to approve every app
# choco feature enable -n=allowGlobalConfirmation
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
# Install Applications
choco feature enable -n=allowGlobalConfirmation
choco install skype -y
choco install lockhunter -y
choco install lightshot -y
choco install dropbox -y
choco install winrar -y
choco install authy-desktop -y
choco install steam -y
choco install paint.net -y
choco install vlc -y
choco install zoom -y
choco install ditto -y
choco install adobereader -y
choco install teamviewer -y
choco install rescuetime -y
choco install whatsapp -y
choco install microsoft-teams -y
choco install obs-studio -y
choco install obs-virtualcam -y
# Install DevTools
choco install nodejs -y
choco install git -y
choco install gitextensions -y
choco install gitkraken -y
choco install ngrok.portable -y
choco install mysql -y
choco install docker-desktop -y
choco install heidisql -y
choco install notepadplusplus -y
choco install visualstudiocode -y
choco install postman -y
choco install fiddler -y
choco install putty -y
choco install kdiff3 -y
choco install nuget.commandline -y
choco install ssms -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment