PowerShell DSC: A Starting Guide
Introduction
Getting Started with PowerShell Desired State Configuration
What is PowerShell Desired State Configuration?
Installing PowerShell DSC
Creating and Applying DSC Configurations
Writing DSC Configurations
Configuration InstallIIS {
Import-DscResource -ModuleName PSDesiredStateConfiguration
Node 'localhost' {
WindowsFeature IIS {
Ensure = 'Present'
Name = 'Web-Server'
}
}
}