Skip to content

Instantly share code, notes, and snippets.

@KindDragon
Last active January 1, 2016 21:24
Show Gist options
  • Save KindDragon/f8f3f07bf81551c956da to your computer and use it in GitHub Desktop.
Save KindDragon/f8f3f07bf81551c956da to your computer and use it in GitHub Desktop.
Boxstarter script
#http://boxstarter.org/WebLauncher
Update-ExecutionPolicy RemoteSigned
cinst -y git -params '"/GitOnlyOnPath"'
cinst -y winmerge
cinst -y beyondcompare
cinst -y poshgit
cinst -y git-credential-winstore
cinst -y ethanbrown.conemuconfig #cinst -y conemu
cinst -y sublimetext3
cinst -y python2
cinst -y PSCX
cinst -y sysinternals #cinst -y ProcExp
cinst -y windbg
if (Test-PendingReboot) { Invoke-Reboot }
# Update Windows and reboot if necessary
Install-WindowsUpdate -AcceptEula
if (Test-PendingReboot) { Invoke-Reboot }
cinst -y firefox
cinst -y visualstudio2013ultimate -InstallArguments "VC_MFC_Libraries Win8SDK WebTools"
if (Test-PendingReboot) { Invoke-Reboot }
# Visual Studio SDK required for PoshTools extension
cinst -y VS2013SDK
if (Test-PendingReboot) { Invoke-Reboot }
cinst -y DotNet3.5 # Not automatically installed with VS 2013. Includes .NET 2.0. Uses Windows Features to install.
if (Test-PendingReboot) { Invoke-Reboot }
Install-ChocolateyVsixPackage xunit http://visualstudiogallery.msdn.microsoft.com/463c5987-f82b-46c8-a97e-b1cde42b9099/file/66837/1/xunit.runner.visualstudio.vsix
#editorconfig
#cinst -y mpc-hc
#GitExt ConEmu
#Install-ChocolateyPinnedTaskBarItem "$($Boxstarter.programFiles86)\Google\Chrome\Application\chrome.exe"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment