Last active
January 12, 2023 17:04
-
-
Save AjkayAlan/8122b0a2f81f2e050bafe68e8dd7d233 to your computer and use it in GitHub Desktop.
Installs Chocolatey and all the nice things I want
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
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) | |
choco feature enable -n allowGlobalConfirmation | |
choco install googlechrome | |
choco install vlc | |
choco install microsoft-windows-terminal | |
choco install peazip | |
choco install vscode | |
choco install steam | |
choco install choco-upgrade-all-at --params "'/TIME:21:00'" | |
choco install origin | |
choco install google-backup-and-sync | |
choco install streamlink | |
choco install streamlink-twitch-gui | |
choco install discord | |
choco install uplay | |
choco install epicgameslauncher | |
# Other useful things for work | |
choco install git | |
choco install beyondcompare | |
choco install postman | |
choco install powershell-core | |
choco install sql-server-management-studio | |
choco install visualstudio2019enterprise | |
choco install resharper | |
choco install python -version 3.7.6 | |
choco install nodejs-lts | |
# Other optional things | |
choco install firefox | |
choco install putty | |
choco install winscp | |
choco install bleachbit | |
choco install f.lux | |
choco install libreoffice-fresh | |
choco install wox |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment