Skip to content

Instantly share code, notes, and snippets.

@karstenmueller
Last active August 29, 2015 14:21
Show Gist options
  • Save karstenmueller/d5ae522b0f5cb42129ae to your computer and use it in GitHub Desktop.
Save karstenmueller/d5ae522b0f5cb42129ae to your computer and use it in GitHub Desktop.
BoxStarter
# A simple BoxStarter script for use with http://boxstarter.org/WebLauncher
# Issue in CMD, Powershell or IE:
# START http://boxstarter.org/package/nr/url?<GIST RAW URL>
# Show more info for files in Explorer
Set-WindowsExplorerOptions -EnableShowFileExtensions -EnableShowFullPathInTitleBar
# Allow running PowerShell scripts
Update-ExecutionPolicy Unrestricted
# Allow unattended reboots
$Boxstarter.RebootOk=$true
$Boxstarter.AutoLogin=$true
# Update Windows and reboot if necessary
Install-WindowsUpdate -AcceptEula
if (Test-PendingReboot) { Invoke-Reboot }
# commandline tools
cinst vim
cinst curl
cinst putty
cinst psget
# gui tools
cinst wox
# editor
cinst sublimetext2
# git stuff
#cinst git-credential-winstore
#cinst poshgit
# svn stuff
cinst sliksvn
cinst tortoisesvn
# vagrant stuff
cinst virtualbox
cinst vagrant
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment