如何使用powershell cmdlet在常规部分中设置字段“Description”?
我在c#中使用powershell命令来进行修改。我试图使用命令“set-ADUser”,但它看起来不像是有效的命令来调用...
这是我试过的命令:
// create the PowerShell command
var command3 = new Command("Set-ADUser");
command3.Parameters.Add("Identity", userprincipalname);
command3.Parameters.Add("Description", description);
我有这个错误:
The term 'Set-ADUser' is not recognized as the name of a cmdlet, function, script file, or operable program.
答案 0 :(得分:1)
Set-ADUser来自ActiveDirectory模块(RSAT工具)。 Exchange 2013 cmdlet使用Set-User,但Description不是它的参数,因此您无法仅使用Exchange cmdlet设置/更改它。