Last active
January 16, 2020 16:02
-
-
Save constantlycoding/b254e22ab362a9584d65fef4f5198735 to your computer and use it in GitHub Desktop.
My Chocolatey installs
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
| Install Chocolatey: | |
| Set-ExecutionPolicy Bypass -Scope Process -Force; ` | |
| iex((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) | |
| clist -l | |
| cinst opera --params '"/NoDesktopShortcut"' -y | |
| cinst googlechrome -y | |
| cinst 7zip.install -y | |
| cinst ccleaner -y | |
| cinst gimp -y | |
| cinst vscode -y | |
| cinst docker-desktop -y | |
| cinst notion -y | |
| cinst doublecmd -y | |
| cinst xmind -y | |
| cinst bazel -y | |
| cinst aria2 -y | |
| cinst screentogif -y | |
| cinst greenshot -y | |
| cinst vim --params "'/NoDesktopShortcuts /NoContextmenu'" -y | |
| cinst postman -y | |
| cinst soapui -y | |
| cinst youtube-dl -y | |
| cinst git.install --params "/GitAndUnixToolsOnPath /NoGitLfs /SChannel /NoAutoCrlf /NoShellIntegration" -y | |
| cinst visualstudio2019buildtools --package-parameters "--add Microsoft.VisualStudio.Workload.NetCoreBuildTools --passive --locale en-US" -y | |
| cinst handbrake -y | |
| cinst jmeter -y | |
| cinst gradle -y | |
| cinst miniconda3 --params "/AddToPath:1" -y | |
| cinst golang -y | |
| cinst nvm.portable -y | |
| cinst elm-platform -y | |
| cinst monodevelop -y | |
| cinst androidstudio -y | |
| cinst jdk8 -params "source=false" -y | |
| --2017 | |
| Start-Process "C:\Program Files (x86)\Microsoft Visual Studio\Installer\vs_installer.exe" -ArgumentList 'modify --installPath "C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools" --passive --add Microsoft.VisualStudio.Component.NuGet.BuildTools' -Wait -PassThru | |
| Start-Process "C:\Program Files (x86)\Microsoft Visual Studio\Installer\vs_installer.exe" -ArgumentList 'modify --installPath "C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools" --passive --add Microsoft.VisualStudio.Component.FSharp.MSBuild' -Wait -PassThru | |
| --2019 | |
| Start-Process "C:\Program Files (x86)\Microsoft Visual Studio\Installer\vs_installer.exe" -ArgumentList 'modify --installPath "C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools" --passive --add Microsoft.VisualStudio.Component.FSharp.MSBuild' -Wait -PassThru |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment