Skip to content

Instantly share code, notes, and snippets.

@gethari
Last active August 23, 2021 10:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gethari/ec3b68103179842a2216f6ed29fc8225 to your computer and use it in GitHub Desktop.
Save gethari/ec3b68103179842a2216f6ed29fc8225 to your computer and use it in GitHub Desktop.
echo This will first install chocolatey, then other tools
echo .
echo Browse https://chocolatey.org/packages for packages
echo .
echo Ensure that your cmd.exe runs as Administrator
echo .
powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin
choco feature enable -n=allowGlobalConfirmation
echo Now chocolatey should be ready and we can go ahead
echo .
#Disabling user confirmation
choco feature disable -n allowGlobalConfirmation
#Browsers
choco install googlechrome
#Essentials
choco install microsoft-teams
choco install nvidia-display-driver
#DevTools
choco install vscode
choco install jetbrains-rider
choco install notepadplusplus.install
choco install git
choco install nodejs-lts
choco install postman
choco install visualstudio-installer
choco install robo3t
##SDK
choco install dotnetcore-sdk
#Misc
choco install 7zip
choco install spotify
choco install notion
choco install treesizefree
#Terminal
choco install microsoft-windows-terminal
choco install oh-my-posh
choco install powertoys
choco install poshgit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment