I have set the XML file up correctly and have all the pre-req's installed. About midway through the script when it starts creating webapplications it errors out saying the PowerShell module "WebAdministration" is not loaded. Attempting to do Import-Module does not work.
Comments: ** Comment from web user: brianlala **
Comments: ** Comment from web user: brianlala **
What OS are you using? Anyhow it appears the PowerShell module for IIS wasn't installed in your case. Can you run:
Get-Module -ListAvailable | ? {$_.Name -eq "WebAdministration"}
And see if anything is returned? If not, then possibly the module wasn't installed for some reason during the IIS portion of the prerequisiteinstaller.
Brian