Scratch/Get-TargetNodeConfiguration.ps1

#Get-DscResource -Name WindowsFeature -Syntax

Configuration WindowsFeatureResource {
Import-DscResource -ModuleName 'PSDesiredStateConfiguration'

    Node WFE-Development {
        
        WindowsFeature IIS {

            Ensure = "Present"
            Name = 'Web-Server'
        }
    }
}

WindowsFeatureResource -OutputPath C:\Demos