Last active
August 29, 2015 14:00
-
-
Save danhively/bd34033bf1dd65af7beb 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
###################### Windows ###################### | |
Install-WindowsUpdate -AcceptEula | |
Set-ExplorerOptions -showHiddenFilesFoldersDrives -showFileExtensions -showProtectedOSFiles | |
Enable-RemoteDesktop | |
Set-TaskbarSmall | |
Update-ExecutionPolicy Unrestricted | |
Install-WindowsUpdate | |
Install-WindowsUpdate -AcceptEula | |
cinst IIS-WebServerRole -source windowsfeatures | |
cinst IIS-HttpCompressionDynamic -source windowsfeatures | |
cinst IIS-ManagementScriptingTools -source windowsfeatures | |
cinst IIS-WindowsAuthentication -source windowsfeatures | |
cinst IIS-DigestAuthentication -source windowsfeatures | |
cinst IIS-BasicAuthentication -source windowsfeatures | |
cinst IIS-ASPNET -source windowsfeatures | |
cinst IIS-ASPNET45 -source windowsfeatures | |
cinst IIS-NetFxExtensibility -source windowsfeatures | |
cinst IIS-NetFxExtensibility45 -source windowsfeatures | |
cinst IIS-HttpRedirect -source windowsfeatures | |
cinst Microsoft-Hyper-V-All -source windowsFeatures |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment