Skip to content

Instantly share code, notes, and snippets.

@darragh-murphy
Last active May 30, 2016 23:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save darragh-murphy/1718fca27ab5c4c81227 to your computer and use it in GitHub Desktop.
Save darragh-murphy/1718fca27ab5c4c81227 to your computer and use it in GitHub Desktop.
My boxstarter script
# Execute with this command.
START http://boxstarter.org/package/nr/url?https://gist.githubusercontent.com/darraghjmurphy/1718fca27ab5c4c81227/raw/9c2c4cb1c1ad8ab4d2fcdc8b1e2cc0fcf5ff46c5/boxstarter1.txt
# A simple BoxStarter script for use with http://boxstarter.org/WebLauncher
# Updates a Windows machine and installs a range of developer tools
# Show more info for files in Explorer
Set-WindowsExplorerOptions -EnableShowFileExtensions -EnableShowFullPathInTitleBar
# Default to the desktop rather than application launcher
Set-StartScreenOptions -EnableBootToDesktop -EnableDesktopBackgroundOnStart -EnableShowStartOnActiveScreen -EnableShowAppsViewOnStartScreen -EnableSearchEverywhereInAppsView -EnableListDesktopAppsFirst
# 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 }
# Install lots of developer software
cinst visualstudioexpress2013windowsdesktop
if (Test-PendingReboot) { Invoke-Reboot }
cinst 7zip
cinst androidstudio
cinst ant
cinst beyondcompare
cinst clojure
cinst cutepdf
cinst 7zip
cinst eclipse
cinst emacs
cinst erlang
cinst githubforwindows
cinst golang
cinst google-chrome-x64
cinst googledrive
# cinst googleearth
# cinst adobereader
cinst greenshot
cinst lastpass
cinst maven
cinst memcached
cinst deluge
cinst nodejs
cinst orwelldevcpp
cinst pdfcreator
cinst picasa
cinst procexp
cinst procmon
cinst python3
cinst ruby
cinst rubygems
cinst putty
# cinst silverlight
cinst skype
cinst vlc
cinst smartftp
# cinst speccy
cinst spotify
# cinst steam
cinst sublimetext3
cinst teracopy
cinst tor-browser
cinst tortoisegit
cinst treesizefree
cinst truecrypt
cinst vim
cinst visualstudiocommunity2013
cinst youtube-dl
cinst grepwin
cinst ccleaner
cinst teraterm
cinst partitionmasterfree
# cinst defraggler
cinst powershell
cinst alldup
cinst freeciv
cinst scummvm
cinst minecraft
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment