4
當我有確保用戶帳戶不存在,並且當我試圖將其適用於使用Start-DscConfiguration
本地系統,我收到類似的錯誤消息的簡單的PowerShell DSC配置塊以下:錯誤施加的PowerShell DSC配置
WS管理服務無法處理該請求。 WMI服務返回了「訪問被拒絕」錯誤。
我怎樣才能成功地應用了DSC的配置?
這裏是我使用的配置塊:
configuration MyConfig {
User Trevor2 {
UserName = 'Trevor2';
Ensure = 'Absent';
}
}
$Path = 'c:\dsc\MyConfig';
MyConfig -OutputPath $Path;
Start-DscConfiguration -Wait -Verbose -Path $Path;
# Clean up MOF files
Remove-Item -Path $Path -Recurse;
特雷沃 - 這是什麼?某種個人日誌? :P – ravikanth 2014-08-29 10:54:55
歡迎來到StackOverflow。 :) – 2014-08-29 14:05:32