Last active
August 29, 2015 13:57
-
-
Save jmlucjav/5c6934063778705fa81c 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-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions -EnableShowFullPathInTitleBar | |
# Enable-RemoteDesktop | |
Disable-InternetExplorerESC | |
Disable-UAC | |
#Set-TaskbarSmall | |
Set-TaskbarOptions -Size Small -Lock -Dock Bottom | |
#basic stuff | |
cinst google-chrome-x64 | |
cinst FoxitReader | |
Install-WindowsUpdate -AcceptEula |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment