Skip to content

Instantly share code, notes, and snippets.

@dgwaldo
Created June 6, 2015 17:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dgwaldo/ac73cb079a44c581e7a1 to your computer and use it in GitHub Desktop.
Save dgwaldo/ac73cb079a44c581e7a1 to your computer and use it in GitHub Desktop.
Installing Apps with Chocolatey
#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