Last active
August 29, 2015 14:26
-
-
Save thedanfernandez/273762cf484d6ade219e 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
| # Step 0 - Open a PowerShell Command Prompt as Administrator | |
| # Step 0.5 - Set execution policy to remotesigned | |
| # Set-ExecutionPolicy remotesigned | |
| iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1')) | |
| #Apps and Utilities | |
| choco install greenshot --yes | |
| choco install googlechrome --yes | |
| choco install vlc --yes | |
| choco install skype --yes | |
| choco install spotify --yes | |
| choco install windirstat --yes | |
| choco install filezilla --yes | |
| choco install sysinternals --yes | |
| #Home only | |
| <# | |
| choco install crashplan --yes | |
| choco install steam --yes | |
| choco install visualstudio2015community --yes | |
| #> | |
| #Dev Utilities | |
| choco install git --yes | |
| choco install git-credential-winstore --yes | |
| choco install putty --yes | |
| choco install curl --yes | |
| choco install dotpeek --yes | |
| # Web Tools | |
| choco install visualstudiocode --yes | |
| choco install nodejs.install --yes | |
| choco install npm --yes | |
| choco install yeoman --yes | |
| choco install docker --yes | |
| choco install docker-machine --yes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment