Created
January 24, 2016 08:40
-
-
Save martic/ee4d4b98ffdfa6857de3 to your computer and use it in GitHub Desktop.
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 script for blog post http://blog.zerosharp.com/provisioning-a-new-development-machine-with-boxstarter | |
| # Allow reboots | |
| $Boxstarter.RebootOk=$true | |
| $Boxstarter.NoPassword=$false | |
| $Boxstarter.AutoLogin=$true | |
| # Basic setup | |
| Update-ExecutionPolicy Unrestricted | |
| Set-ExplorerOptions -showHidenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions | |
| Enable-RemoteDesktop | |
| Disable-InternetExplorerESC | |
| Disable-UAC | |
| Set-TaskbarSmall | |
| if (Test-PendingReboot) { Invoke-Reboot } | |
| # Update Windows and reboot if necessary | |
| Install-WindowsUpdate -AcceptEula | |
| if (Test-PendingReboot) { Invoke-Reboot } | |
| Enable-UAC | |
| if (Test-PendingReboot) { Invoke-Reboot } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
START https://goo.gl/XA0c7t