Skip to content

Instantly share code, notes, and snippets.

@PilotBob
Last active January 27, 2018 19:44
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 PilotBob/f2a1070a9f4473a47470 to your computer and use it in GitHub Desktop.
Save PilotBob/f2a1070a9f4473a47470 to your computer and use it in GitHub Desktop.
My Boxstarter Script
# 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 -EnableShowFileExtensions -EnableShowFullPathInTitleBar
Enable-RemoteDesktop
# Update Windows and reboot if necessary
# commented because it seems to hang after doing this
Install-WindowsUpdate -AcceptEula
cinst IIS-WebServerRole -source windowsfeatures
# dev tools
cinst visualstudiocode
cinst beyondcompare
cinst notepadplusplus
cinst sysinternals
cinst tortoisesvn
cinst linqpad
cinst cctray
#Browsers
cinst googlechrome
cinst firefox
# Tools bob uses
cinst cmder #console emulator
cinst foxitreader #Alternative PDF reader
cinst expresso #Regular expression tester
cinst github #Github Desktop
cinst nodejs
# Not automatically installed with VS 2013. Includes .NET 2.0. Uses Windows Features to install.
cinst dotnet3.5
# Install Visual Studio 2013 Professional
cinst VisualStudio2013Professional -InstallArguments "/Features:'WebTools SQL'" --execution-timeout=14400
# VS 2013 Extensions
cinst visualstudio2013-webessentials.vsix
cinst vs2013.powertools
# VS 2017 Professional
cinst visualstudio2017professional
cinst visualstudio2017-workload-netweb
cinst visualstudio2017-workload-azure
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment