Skip to content

Instantly share code, notes, and snippets.

@eeevans
Last active June 20, 2018 20:48
Show Gist options
  • Save eeevans/2eeae0f18ec49d983762 to your computer and use it in GitHub Desktop.
Save eeevans/2eeae0f18ec49d983762 to your computer and use it in GitHub Desktop.
# 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 Favorite Tools
choco install visualstudio2017enterprise
choco install visualstudio2017-workload-manageddesktop
choco install git
choco install gitextensions
choco install p4merge
choco install poshgit
choco install sysinternals
choco install lockhunter
choco install ccleaner
choco install snoop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment