When I run below script, why doesn’t the management tools like IIS manager get installed?
should we explicitly call for them to be installed?
Configuration Mywebserver
{
Node “LocalHost”
{ WindowsFeature IIS
{ Ensure = “Present”
Name = “Web-WebServer”
}
}
}
Mywebserver
Start-DscConfiguration -ComputerName “localhost” -Path C:\Mywebserver -Wait -Verbose -Force