3

我目前正在开发一个 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:无法调用此函数,因为当前主机没有实现它。

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

4

1 回答 1

2

感谢这个话题,我找到了答案。

我改变了Command这样的对象:

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

它就像一个魅力。谢谢 !

我希望能帮助别人!

于 2013-04-19T12:42:30.513 回答