C# Powershell - 交换管理 {"Value cannot be null.\r\nParameter name: serverSettings"}
C# Powershell - Exchange management {"Value cannot be null.\r\nParameter name: serverSettings"}
我想通过 C# 项目与安装在我机器上的 Microsoft.Exchange.Management.PowerShell.E2010
进行交互。
我的本地计算机是 Windows Server 2012 R2 Standard 并且安装了带有 Rollup Update 14 的 Exchange Server 2010 SP3。
我正在使用 4.5 .NET Framework(无法降级到旧版本)
WSManConnectionInfo connectionInfo = new WSManConnectionInfo();
connectionInfo.OperationTimeout = 4 * 60 * 1000; // 4 minutes.
connectionInfo.OpenTimeout = 1 * 60 * 1000; // 1 minute.
Runspace runspace = RunspaceFactory.CreateRunspace(connectionInfo);
runspace.Open();
using (PowerShell ps = PowerShell.Create())
{
ps.Runspace = runspace;
ps.AddCommand("Add-PsSnapIn");
ps.AddArgument("Microsoft.Exchange.Management.PowerShell.E2010");
var results = ps.Invoke();
try
{
ps.AddCommand("Get-MailBox");
results = ps.Invoke();
}
catch (Exception e)
{
}
}
runspace.Close();
- 我打开一个远程 shell 会话(针对我的本地计算机)。
- 添加Exchange管理PsSnapIn,以便访问exchange命令。
- 终于执行了我的 Exchange 管理命令。
\!/ 问题在最后一步,results = ps.Invoke();
抛出 System.Management.Automation.RemoteException
消息 "Value cannot be null.\r\nParameter name: serverSettings"
.
你们有什么想法吗?
感谢您的宝贵时间。
过去几天我一直在为此苦苦挣扎。我知道这个问题已经有几个月了,但我想我会分享我终于找到的解决方案。在您的 .config 中,您需要将 startup
标签上的 useLegacyV2RuntimeActivationPolicy
属性设置为 true
。像这样:
<startup useLegacyV2RuntimeActivationPolicy="true">
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.2"/>
</startup>
使用它,我成功地 运行 一个 Get-Mailbox
命令,同时以 .NET 4.6.2 为目标。
我想通过 C# 项目与安装在我机器上的 Microsoft.Exchange.Management.PowerShell.E2010
进行交互。
我的本地计算机是 Windows Server 2012 R2 Standard 并且安装了带有 Rollup Update 14 的 Exchange Server 2010 SP3。
我正在使用 4.5 .NET Framework(无法降级到旧版本)
WSManConnectionInfo connectionInfo = new WSManConnectionInfo();
connectionInfo.OperationTimeout = 4 * 60 * 1000; // 4 minutes.
connectionInfo.OpenTimeout = 1 * 60 * 1000; // 1 minute.
Runspace runspace = RunspaceFactory.CreateRunspace(connectionInfo);
runspace.Open();
using (PowerShell ps = PowerShell.Create())
{
ps.Runspace = runspace;
ps.AddCommand("Add-PsSnapIn");
ps.AddArgument("Microsoft.Exchange.Management.PowerShell.E2010");
var results = ps.Invoke();
try
{
ps.AddCommand("Get-MailBox");
results = ps.Invoke();
}
catch (Exception e)
{
}
}
runspace.Close();
- 我打开一个远程 shell 会话(针对我的本地计算机)。
- 添加Exchange管理PsSnapIn,以便访问exchange命令。
- 终于执行了我的 Exchange 管理命令。
\!/ 问题在最后一步,results = ps.Invoke();
抛出 System.Management.Automation.RemoteException
消息 "Value cannot be null.\r\nParameter name: serverSettings"
.
你们有什么想法吗?
感谢您的宝贵时间。
过去几天我一直在为此苦苦挣扎。我知道这个问题已经有几个月了,但我想我会分享我终于找到的解决方案。在您的 .config 中,您需要将 startup
标签上的 useLegacyV2RuntimeActivationPolicy
属性设置为 true
。像这样:
<startup useLegacyV2RuntimeActivationPolicy="true">
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.2"/>
</startup>
使用它,我成功地 运行 一个 Get-Mailbox
命令,同时以 .NET 4.6.2 为目标。