我做了很多艰苦的研究并试图解决我的问题。 3天谷歌搜索,现在问我最终得到这个:
using Microsoft.GroupPolicy;
private void ManipulateGPO(){
GPDomain domain = new GPDomain("sh.dom");
Gpo gpo_background = domain.CreateGpo("testingGPO");
}
上面的代码成功创建了一个GPO。但我需要将它链接到一个OU?
任何帮助将不胜感激。
更新1: My GPO Screenshot
答案 0 :(得分:0)
使用SOM(管理范围)类链接到OU
function copyToClipboard(elementId) {
var aux = document.createElement("input");
// Assign it the value of the specified element
aux.setAttribute("value", document.getElementById(elementId).innerHTML);
document.body.appendChild(aux);
aux.select();
document.execCommand("copy");
document.body.removeChild(aux);
alert("Copied!");
}
参考 索姆等级:https://msdn.microsoft.com/en-us/library/windows/desktop/microsoft.grouppolicy.som(v=vs.85).aspx
GPDomain.GetSom:https://msdn.microsoft.com/en-us/library/windows/desktop/microsoft.grouppolicy.gpdomain.getsom(v=vs.85).aspx