Skip to content

Instantly share code, notes, and snippets.

@sgwill
Created August 12, 2015 19:18
Show Gist options
  • Save sgwill/7f86ca70d32529bdadb7 to your computer and use it in GitHub Desktop.
Save sgwill/7f86ca70d32529bdadb7 to your computer and use it in GitHub Desktop.
Boxstarter
# 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
choco install visualstudio2013professional
if (Test-PendingReboot) { Invoke-Reboot }
choco install visualstudio2015professional -version 14.0.23107.0
if (Test-PendingReboot) { Invoke-Reboot }
choco install 7zip
choco install filezilla
choco install Firefox
choco install git
choco install gitextensions
choco install GitHub
choco install GoogleChrome
choco install nodejs
choco install notepadplusplus
choco install P4Merge
choco install poshgit
choco install SourceTree
choco install tortoisesvn
choco install vlc
choco install winmerge
choco install webpi
choco install fiddler4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment