Question 14:
A team wants to implement Azure Automation DSC for a set of servers. They have currently defined the following configuration
configuration TestConfig {
Node WebServer {
WindowsFeature IIS {
Ensure = `Present`
Name = `Web-Server`
IncludeAllSubFeature = $true
}
}
}
To upload the configuration into your Automation account, which PowerShell cmdLet should we execute?
Answer options:
A.Run the Start-AzureRmAutomationDscCompilationJob powershell command B.Run the Import-AzureRmAutomationDscConfiguration powershell command C.Run the Register-AzureRmAutomationDscNode powershell command D.Run the Get-AzureRmAutomationDscNode powershell command