Last active
August 29, 2015 14:01
-
-
Save phantomtypist/9a2c3ac50d55c726f7b0 to your computer and use it in GitHub Desktop.
This file contains 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
# http://boxstarter.org/package/url? | |
# 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 | |
##################### | |
# BEGIN CONFIGURATION | |
##################### | |
#region Initial Windows Config | |
Install-WindowsUpdate -AcceptEula | |
Update-ExecutionPolicy Unrestricted | |
Enable-RemoteDesktop | |
Enable-MicrosoftUpdate | |
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowFileExtensions | |
Disable-InternetExplorerESC | |
#endregion | |
# Let's get the latest version of powershell, .net frameworks, etc. | |
cinst binroot | |
cinst PowerShell | |
cinst ChocolateyGUI | |
cinst DotNet3.5 | |
cinst DotNet4.0 | |
cinst DotNet4.5 | |
cinst DotNet4.5.1 | |
cinst mono |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment