1

C# を使用して、Exchange と対話する PowerShell コマンドを送信しています。initconnectionExchange への接続をセットアップするというメソッドがあります。

接続が確立された後にコマンドをpowershellに送信するボタンをクリックすると呼び出す別のメソッドがあります。ただし、作成した接続を続行できません。コマンドを実行しようとすると、コマンドが見つかりませんと表示されます。おそらく、交換コマンドレットがないためです。

Runspace runspace = System.Management.Automation.Runspaces.RunspaceFactory.CreateRunspace();

runspace.Open();

Pipeline pipeline = runspace.CreatePipeline();
pipeline.Commands.AddScript("Set-ExecutionPolicy Unrestricted -Scope process -Force;$password = ConvertTo-SecureString -AsPlainText -Force " + password + ";$mycred = new-object -typename System.Management.Automation.PSCredential -argumentlist " + username + ",$password;$LiveCred = Get-Credential -Credential $mycred; $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell/ -Credential $LiveCred -Authentication Basic –AllowRedirection; Import-PSSession $Session");
// pipeline.Commands.Add("Out-String");

pipeline.Invoke();
mpeAdd.Hide();

これは、接続を作成する initconnection メソッドです。

protected void Get_Mailboxes(object sender, EventArgs e) {

    PowerShell powershell = PowerShell.Create();
    PSCommand command = new PSCommand();
    command = new PSCommand();
    command.AddCommand("Get-Mailbox");

    powershell.Commands = command;
    powershell.Runspace = runspace; //Also it says runsapce doesn't exist in this context.
    Collection<PSObject> commandResults = powershell.Invoke();

    StringBuilder sb = new StringBuilder();

    ArrayList boxesarray = new ArrayList();

    foreach (PSObject ps in commandResults)
    {
        boxesarray.Add(ps.Properties["Alias"].Value.ToString());
    }

    boxes.DataSource = boxesarray;
    boxes.DataBind();
}

これは、接続が作成された後にボタンをクリックしたときに呼び出すメソッドですが、機能していません。

4

2 に答える 2

2

Exchangeスナップインを実行スペースに追加する必要があります。開発者向けのExchangeをご覧ください。

于 2012-08-08T15:31:27.057 に答える