我有一个简单的 PowerShell DSC 配置块,可确保用户帐户不存在,当我尝试使用 将其应用到本地系统Start-DscConfiguration
时,我收到类似于以下内容的错误消息:
WS-Management 服务无法处理该请求。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;