In the almost certainly futile attempt to automate the deployment of this project I'm working on, I'm feeling a little bit despondent today, so excuse my pessimism, I was asked to complete the installation of IIS via a script.
MS Dynamics CRM 2011 will install all the Role services it needs to run, but it will not install some crucial features like logging.
At any rate, to cut a long story short this is what is needed to install http logging in IIS 7.5
- Run PowerShell as Administrator.
- Import-module servermanager
- Get-WindowsFeature | where {$_.Name -like "Web*"}
- Add-WindowsFeature Web-Http-Logging
Any other Role Services (features) can installed in a similar manner.
No comments:
Post a Comment