Skip to content

Instantly share code, notes, and snippets.

@ethanmdavidson
Last active August 29, 2015 14:24
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 ethanmdavidson/c46b5ecc085d4c93ec08 to your computer and use it in GitHub Desktop.
Save ethanmdavidson/c46b5ecc085d4c93ec08 to your computer and use it in GitHub Desktop.
basic dev setup with boxstarter
#boxstarter options
#with this setup, boxstarter will ask you for your password when this script is run, and use it to login after each restart
$Boxstarter.RebootOk=$true
$Boxstarter.NoPassword=$false
$Boxstarter.AutoLogin=$true
#windows options
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions
#install programs
#boxstarter can use any packages from the chocolatey feed (https://chocolatey.org/packages), as well as from
#the boxstarter community feed (https://www.myget.org/gallery/boxstarter)
#cinst chocolatey -y
cinst 7zip -y
cinst tortoisehg -y
cinst wireshark -y
cinst hexedit -y
cinst notepadplusplus -y
cinst jdk8 -y
cinst eclipse -y
#cinst slack -y #the slack package is not up-to-date
#cinst skype -y
cinst vagrant -y
cinst virtualbox -y
#cinst vmwareplayer -y #workstation isn't available through chocolatey
cinst mingw -y
cinst android-sdk -y
cinst visualstudio2012professional -y
#cinst visualstudio2013professional -y
cinst wixtoolset -y
Install-WindowsUpdate -AcceptEula #install all critical windows updates
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment