Exchange和PowerShell

时间:2013-04-19 07:51:19

标签: c# powershell exchange-server-2010

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

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

1 个答案:

答案 0 :(得分:2)

我已经找到了答案,感谢topic

我改变了Command这样的对象:

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

它就像一个魅力。 谢谢 !

我希望能帮助别人!