Skip to content

Instantly share code, notes, and snippets.

@cltatman
Last active February 6, 2017 20:15
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 cltatman/d82daa74fa69fb3050f98d99fb8b881c to your computer and use it in GitHub Desktop.
Save cltatman/d82daa74fa69fb3050f98d99fb8b881c to your computer and use it in GitHub Desktop.
$Boxstarter.RebootOk=$true
$Boxstarter.NoPassword=$false
$Boxstarter.AutoLogin=$true
# Configure Windows
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions -EnableShowFullPathInTitleBar
Update-ExecutionPolicy Unrestricted
## Git
cinst -y git.install
## Visual Studio 2015
cinst -y visualstudio2015community
if (Test-PendingReboot) { Invoke-Reboot }
## Basics
cinst -y ccleaner
cinst -y GoogleChrome
cinst -y 7zip.install
if (Test-PendingReboot) { Invoke-Reboot }
# Pinning Things
Install-ChocolateyPinnedTaskBarItem "$env:programfiles\Google\Chrome\Application\chrome.exe"
# Let's get Updates, too
Install-WindowsUpdate -acceptEula
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment