使用exchange 2013中的powershell cmdlet设置描述信息

本文关键字:设置 描述 信息 cmdlet powershell exchange 2013 中的 使用 | 更新日期: 2023-09-27 18:11:08

如何使用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.

使用exchange 2013中的powershell cmdlet设置描述信息

Set-ADUser来自ActiveDirectory模块(RSAT工具)。Exchange 2013 cmdlet使用set - user,但Description不是它的参数之一,所以你不能使用Exchange cmdlet设置/更改。