May I know in the following PowerShell DSC, what is the difference if I remove the Ensure property (not ensure attribute)?
In another sense, any default if no value specified for Ensure property?
Node WebServer
{
WindowsFeature IIS {
Ensure = "Present",
Name = "Web–Server"
}
}