How should you configure the DSC resources?

Drag and Drop Question
You have a network that contains several servers that run Windows Server 2016.
You need to use Desired State Configuration (DSC) to configure the servers to meet the following requirements:
Install the Web Server server role
Start the World Wide Web Publishing service
How should you configure the DSC resources? To answer, drag the appropriate values to the correct locations Each value may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.


Select and Place:


microsoft-exams

2 thoughts on “How should you configure the DSC resources?

  1. incorrect, answer should be…
    WindowsFeature WebServerRole
    {
    Ensure = ” Present”
    Name = “Web-Server”
    }
    WindowsFeature WorldWideWebPublishing
    {
    Name = “W3SVC”
    StartupType = “Automatic”
    State = “Running”
    }

Leave a Reply

Your email address will not be published. Required fields are marked *


The reCAPTCHA verification period has expired. Please reload the page.