Skip to content

Instantly share code, notes, and snippets.

@phantomtypist
Last active August 29, 2015 14:01
Show Gist options
  • Save phantomtypist/7391669aad234a773a23 to your computer and use it in GitHub Desktop.
Save phantomtypist/7391669aad234a773a23 to your computer and use it in GitHub Desktop.
# http://boxstarter.org/package/url?
# Source Control
cinst git.install
cinst msysgit
cinst poshgit
cinst git-credential-winstore -Version 1.2.0.0
cinst gitextensions
cinst tortoisegit
cinst tortoisehg
cinst githubforwindows
if (Test-PendingReboot) { Invoke-Reboot }
# Sql Server
cinst SqlServer2012Express
if (Test-PendingReboot) { Invoke-Reboot }
# Development stuff
cinst vcredist2005
cinst vcredist2008
cinst vcredist2010
if (Test-PendingReboot) { Invoke-Reboot }
cinst webpi
if (Test-PendingReboot) { Invoke-Reboot }
cinst VisualStudio2012Ultimate
if (Test-PendingReboot) { Invoke-Reboot }
cinst VisualStudio2013Ultimate
if (Test-PendingReboot) { Invoke-Reboot }
cinst ruby
cinst python
cinst python -Version 2.7.6
cinst arduinoide
cinst arduinoidegalileo
cinst gtksharp
cinst NuGet.CommandLine
cinst nodejs.install
cinst ScriptCs
cinst PhantomJS
cinst beyondcompare
cinst SourceTree
cinst linqpad4
cinst freecad
cinst eagle
cinst fiddler4
cinst notepadplusplus.install
cinst sublimetext2
cinst winscp
cinst dotPeek
cinst mongodb
cinst nunit
cinst XUnit
cinst ilmerge
cinst typescript
cinst papercut
#cinst smtp4dev
cinst SQLite
cinst redis
cinst mono
cinst monodevelop
cinst rabbitmq
cinst typescript.vs
if (Test-PendingReboot) { Invoke-Reboot }
# VS related extras
cinst resharper -Version 8.2.0.2160 # I don't currently have a R# v.8 license.
Install-ChocolateyVsixPackage PowerShellTools http://visualstudiogallery.msdn.microsoft.com/c9eb3ba8-0c59-4944-9a62-6eee37294597/file/112013/6/PowerShellTools.vsix
Install-ChocolateyVsixPackage WebEssentials2013 http://visualstudiogallery.msdn.microsoft.com/56633663-6799-41d7-9df7-0f2a504ca361/file/105627/31/WebEssentials2013.vsix
Install-ChocolateyVsixPackage T4Toolbox http://visualstudiogallery.msdn.microsoft.com/791817a4-eb9a-4000-9c85-972cc60fd5aa/file/116854/1/T4Toolbox.12.vsix
# Fix SSH-Agent error by adding the bin directory to the `Path` environment variable
$env:PSModulePath = $env:PSModulePath + ";C:\Program Files (x86)\Git\bin"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment