Skip to content

Instantly share code, notes, and snippets.

@adoprog
Created April 28, 2014 14:05
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 adoprog/11373133 to your computer and use it in GitHub Desktop.
Save adoprog/11373133 to your computer and use it in GitHub Desktop.
Prepare Web Server for Sitecore CMS
$group = [ADSI]"WinNT://./IIS_IUSRS,group"
$group.Add("WinNT://%DOMAIN%/%USERNAME%,user")
$group = [ADSI]"WinNT://./Performance Monitor Users,group"
$group.Add("WinNT://%DOMAIN%/%USERNAME%,user")
Import-Module ServerManager
Add-WindowsFeature Web-App-Dev
Add-WindowsFeature Web-Net-Ext
Add-WindowsFeature Web-Net-Ext45
Add-WindowsFeature Web-Asp
Add-WindowsFeature Web-Asp-Net
Add-WindowsFeature Web-Asp-Net45
Add-WindowsFeature Web-Http-Redirect
Add-WindowsFeature Web-Windows-Auth
Add-WindowsFeature Web-Mgmt-Tools
Add-WindowsFeature Web-Static-Content
Add-WindowsFeature Web-Stat-Compression
Add-WindowsFeature Web-Dyn-Compression
iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))
cinst 7zip
cinst aspnetmvc4.install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment