Skip to content

Instantly share code, notes, and snippets.

@eeevans
Created April 15, 2015 19:59
Show Gist options
  • Save eeevans/3db44c9afb3e096ab92b to your computer and use it in GitHub Desktop.
Save eeevans/3db44c9afb3e096ab92b to your computer and use it in GitHub Desktop.
boxstarter.minimal.txt
# Boxstarter options
$Boxstarter.RebootOk=$true # Allow reboots?
$Boxstarter.NoPassword=$false # Is this a machine with no login password?
$Boxstarter.AutoLogin=$true # Save my password securely and auto-login after a reboot
# Basic setup
Update-ExecutionPolicy Unrestricted
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions
Enable-RemoteDesktop
Disable-InternetExplorerESC
Set-TaskbarOptions -Size Small
Write-BoxstarterMessage "Setting time zone to Central Standard Time"
& C:\Windows\system32\tzutil /s "Central Standard Time"
if (Test-PendingReboot) { Invoke-Reboot }
# Update Windows and reboot if necessary
Install-WindowsUpdate -AcceptEula
if (Test-PendingReboot) { Invoke-Reboot }
# Install Visual Studio Community 2013
choco install visualstudio2013ultimate
if (Test-PendingReboot) { Invoke-Reboot }
# Install Favorite Tools
choco install 7zip
choco install resharper -version 8.2.3000.5176
choco install LinqPad
choco install fiddler4
choco install notepadplusplus
choco install sysinternals
choco install filezilla
choco install lockhunter
choco install treesizefree
choco install paint.net
choco install google-chrome-x64
choco install vlc
choco install ccleaner
choco install virtualclonedrive
choco install freedownloadmanager
choco install skype
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment