Per Technet - Add or Remove Email Addresses for a Mailbox,使用PowerShell控制台,以下成功删除邮箱中的电子邮件别名:
Set-Mailbox "GenMgr" -EmailAddresses @{remove="GenMgr@domain.com"}
但是,通过远程运行空间调用下面的PSCommand对象会引发System.Management.Automation.RemoteException错误。
command.AddCommand("Set-Mailbox");
command.AddParameter("Identity", "GenMgr");
command.AddParameter("EmailAddresses", "@{remove='GenMgr@domain.com'}");
powershell.Commands = command;
powershell.Invoke();
System.Management.Automation.RemoteException:无法处理参数'EmailAddresses'上的参数转换。无法将值“@ {remove='GenMgr@domain.com'}”转换为“Microsoft.Exchange.Data.ProxyAddressCollection”。错误:“地址'@ {remove='GenMgr@domain.com'}'无效:”@ {remove='GenMgr@domain.com'}“不是有效的SMTP地址。域名不能包含空格,它必须有前缀和后缀,例如example.com。“
在我看来,问题在于EmailAddresses参数中的'remove'指令。
如何在Windows 8上使用C#和PowerShell远程运行空间来使Exchange 2010删除电子邮件别名?
答案 0 :(得分:6)
Powershell使用@{ key = value }
syntax创建hashtable。不是传递字符串,而是使用值为remove
的单个email@address.com
元素传递哈希表。
有关详情,请参阅相关问题Passing a hashtable from C# to powershell。
command.AddCommand("Set-Mailbox");
command.AddParameter("Identity", "GenMgr");
var addresses = new Hashtable();
addresses.Add("remove", "GenMgr@domain.com");
command.AddParameter("EmailAddresses", adresses);
powershell.Commands = command;
powershell.Invoke();