Skip to content

Instantly share code, notes, and snippets.

@vetraskr
Last active August 29, 2015 14:02
Show Gist options
  • Save vetraskr/82b9068bc1c9fdb5e25b to your computer and use it in GitHub Desktop.
Save vetraskr/82b9068bc1c9fdb5e25b to your computer and use it in GitHub Desktop.
Boxstarter install list (boxen for windows - see boxstarter.org)
# Boxstarter options
#$Boxstarter.RebootOk=$true # Allow reboots?
$Boxstarter.NoPassword=$false # Is this a machine with no login password?
$Boxstarter.AutoLogin=$true # Save my password securely and auto-login after a reboot
# Basic setup
Update-ExecutionPolicy Unrestricted
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions -EnableShowFullPathInTitleBar
Set-StartScreenOptions -EnableBootToDesktop -EnableDesktopBackgroundOnStart
Enable-RemoteDesktop
Disable-UAC
Disable-InternetExplorerESC
# Update Windows and reboot if necessary
#Install-WindowsUpdate -AcceptEula
#if (Test-PendingReboot) { Invoke-Reboot }
# Install Visual Studio 2013 Professional
#cinstm VisualStudio2013Professional -InstallArguments WebTools
#if (Test-PendingReboot) { Invoke-Reboot }
# Visual Studio SDK required for PoshTools extension
#cinstm VS2013SDK
#if (Test-PendingReboot) { Invoke-Reboot }
cinstm DotNet3.5 # Not automatically installed with VS 2013. Includes .NET 2.0. Uses Windows Features to install.
#if (Test-PendingReboot) { Invoke-Reboot }
# VS extensions
#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 StopOnFirstBuildError http://visualstudiogallery.msdn.microsoft.com/91aaa139-5d3c-43a7-b39f-369196a84fa5/file/44205/3/StopOnFirstBuildError.vsix
# dev tools
#cinstm resharper
cinstm kdiff3
cinstm git.install
cinstm poshgit
cinstm githubforwindows
cinstm fiddler4
cinstm linqpad4
cinstm webpi
#cinstm SqlServer2012Express
#if (Test-PendingReboot) { Invoke-Reboot }
# command line tools
cinstm conemu
cinstm nodejs.install
# browsers
cinstm googlechrome-allusers
# other tools
cinstm 7zip
cinstm adobereader
cinstm NimbleText
cinstm paint.net
cinstm SublimeText3
#cinstm launchy
#cinstm Evernote5
cinstm WebStorm
#cinstm spotify
#cinst Microsoft-Hyper-V-All -source windowsFeatures
cinst IIS-WebServerRole -source windowsfeatures
cinst IIS-HttpCompressionDynamic -source windowsfeatures
cinst IIS-ManagementScriptingTools -source windowsfeatures
cinst IIS-WindowsAuthentication -source windowsfeatures
@vetraskr
Copy link
Author

vetraskr commented Jun 5, 2014

To be run using the boxstarter weblauncher. (http://boxstarter.org/WebLauncher)

START http://boxstarter.org/package/nr/url?<PASTE LINK TO RAW FILE HERE>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment