Last active
August 23, 2021 10:27
-
-
Save gethari/ec3b68103179842a2216f6ed29fc8225 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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