Last active
August 29, 2015 14:24
-
-
Save ethanmdavidson/c46b5ecc085d4c93ec08 to your computer and use it in GitHub Desktop.
basic dev setup with 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
#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