2014-08-29 54 views
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; 

回答

6

確保PowerShell控制檯主機或PowerShell集成腳本編輯器(ISE)是您的Windows管理令牌下運行,如果啓用UAC。應用PowerShell DSC配置要求您默認爲管理員。

+3

特雷沃 - 這是什麼?某種個人日誌? :P – ravikanth 2014-08-29 10:54:55

+1

歡迎來到StackOverflow。 :) – 2014-08-29 14:05:32