net 应用程序,我想更新活动目录中的信息。为此,我使用 System.Management.Automation 命名空间。有了这个,我可以使用 Powershell。它工作得很好,但我不知道如何更新字段“extensionAttribute3”(这是我们的成本中心)。
这是我的代码:
...
PSCredential crend = new PSCredential(ADNAME, pw);
using (Runspace runspace = RunspaceFactory.CreateRunspace(initial))
{
runspace.Open();
using (Pipeline p = runspace.CreatePipeline())
{
Command command = new Command("Set-ADUser");
command.Parameters.Add("Identity", sAMAccountName);
//command.Parameters.Add("extensionAttribute3", CostCenter); ???
command.Parameters.Add("Description", Description);
command.Parameters.Add("Credential", crend);
p.Commands.Add(command);
p.Invoke();
}
}
...