0
我目前正在學習DSC並嘗試創建我的第一個MOF文件。當我運行我的配置腳本時,沒有創建MOF文件或報告錯誤。我試圖在Windows 10機器上,不知道如果這是問題。PowerShell DSC不創建MOF
這是腳本。這很簡單,只需要首先測試基礎知識。任何幫助或建議都會很棒。
Configuration TestDSC
{
Node GMSMS01
{
File FileExample
{
Ensure = "Present"
Type = "Directory"
Recurse = $true
SourcePath = "D:\Temp\Source"
DestinationPath = "D:\Temp\Target"
}
}
}