Last active
June 10, 2022 14:33
-
-
Save Adam--/6a4341dd4c23f22227a7fbae6227fa94 to your computer and use it in GitHub Desktop.
Installs software I use
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 Installing chocolatey... | |
@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin" | |
REM Installing packages... | |
REM General tools | |
choco install microsoft-teams -fy | |
choco install 7zip -fy | |
choco install paint.net -fy | |
choco install greenshot -fy | |
choco install licecap -fy | |
choco install guiformat -fy | |
choco install winscp -fy | |
choco install ultravnc -fy | |
choco install termite -fy | |
choco install vlc -fy | |
REM General development | |
choco install git -fy | |
choco install micro -fy | |
choco install hasklig -fy | |
choco install vscode -fy | |
choco install make -fy | |
choco install vera -fy | |
choco install nodejs -fy | |
REM dotnet development | |
choco install visualstudio2019enterprise --package-parameters "--add Microsoft.VisualStudio.Workload.NetCrossPlat --add Microsoft.VisualStudio.Workload.ManagedDesktop --passive" -fy | |
choco install resharper -fy | |
choco install jetbrains-rider -fy | |
REM Python development | |
choco install pycharm-community -fy | |
choco install python -fy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment