Last active
August 29, 2015 14:21
-
-
Save karstenmueller/d5ae522b0f5cb42129ae to your computer and use it in GitHub Desktop.
BoxStarter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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