gpt4 book ai didi

c# - Exchange 和 PowerShell

转载 作者:行者123 更新时间:2023-11-30 17:05:47 26 4
gpt4 key购买 nike

我目前正在开发 Exchange 连接器并使用 C# 中的 PowerShell 脚本,如下所示:

public void Connect(string exchangeFqdn_, PSCredential credential_)
{
var wsConnectionInfo = new WSManConnectionInfo(new Uri("http://" + exchangeFqdn_ + "/powershell"),
"http://schemas.microsoft.com/powershell/Microsoft.Exchange", credential_);

wsConnectionInfo.AuthenticationMechanism = AuthenticationMechanism.Default;

Runspace = RunspaceFactory.CreateRunspace(wsConnectionInfo);
Runspace.Open();
}

然后,我使用 Powershell 对象执行我的脚本:

public override List<PSObject> ExecuteCommand(Command command_)
{
List<PSObject> toreturn;
PowerShell powershell = null;
try
{
powershell = PowerShell.Create();
powershell.Commands.AddCommand(command_);
powershell.Runspace = Runspace;
toreturn = new List<PSObject>(powershell.Invoke());
}
finally
{
if (powershell != null)
powershell.Dispose();
}
return toreturn;
}

我可以用这个命令添加一个邮箱:

Command command = new Command("New-Mailbox");
command.Parameters.Add("Name", name_);
command.Parameters.Add("OrganizationalUnit", ou_);
command.Parameters.Add("UserPrincipalName", upn_);
command.Parameters.Add("FirstName", firstname_);
command.Parameters.Add("Initials", initials_);
command.Parameters.Add("LastName", lastname_);
command.Parameters.Add("ResetPasswordOnNextLogon", false);
command.Parameters.Add("Password", secureString_);

但是当我尝试删除这个邮箱(或另一个邮箱)时我遇到了一个问题:

Command command = new Command("Remove-Mailbox");
command.Parameters.Add("Identity", identity_);
command.Parameters.Add("Permanent", true);

System.Management.Automation.RemoteException: Cannot invoke this function because the current host does not implement it.

我不明白。为什么我可以添加用户,但不能删除它?我错过了什么吗?

最佳答案

我找到了答案,多亏了这个 topic .

我这样更改了 Command 对象:

        Command command = new Command("Remove-Mailbox");
command.Parameters.Add("Identity", identity_);
command.Parameters.Add("Permanent", true);
command.Parameters.Add("Confirm", false);

它就像一个魅力。谢谢 !

希望对大家有帮助!

关于c# - Exchange 和 PowerShell,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16099853/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com