Created
June 6, 2015 17:54
-
-
Save dgwaldo/ac73cb079a44c581e7a1 to your computer and use it in GitHub Desktop.
Installing Apps with Chocolatey
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
#Install Chocolatey | |
iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1')) | |
#Install Apps using Chocolatey | |
cinst webpi -y #Web Platform Installer | |
cinst curl -y | |
cinst notepadplusplus -y | |
cinst googlechrome -y | |
cinst git -y -InstallArguments "/GitAndUnixToolsOnPath" | |
cinst fiddler -y | |
cinst resharper -y | |
cinst stylecop -y | |
cinst mssqlserver2014express -y | |
cinst VisualStudio2013Professional -InstallArguments "/Features:'WebTools Win8SDK Blend SQL'" -y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment