簡單示例 - 啟用 WindowsFeature
configuration EnableIISFeature
{
node localhost
{
WindowsFeature IIS
{
Ensure = `Present`
Name = “Web-Server”
}
}
}
如果在 Powershell(EnableIISFeature)
中執行此配置,它將生成 localhost.mof 檔案。這是你可以在計算機上執行的已編譯配置。
要在 localhost 上測試 DSC 配置,只需呼叫以下內容:
Start-DscConfiguration -ComputerName localhost -Wait