在C#脚本中执行PowerShell cmdlet

时间:2018-12-10 09:54:44

标签: c# powershell cmdlets

我想使用C#进行连接以交换并返回特定用户的邮箱列表。我可以在PowerShell中本地运行它,但是在脚本的上下文中,它没有显示我的期望。

我看到的是tmp_1qf14mc3.wiv或tmp_ra1gbenl.ols之类的输出,而不是邮箱列表。

其他说明:

  • 我已经建立了对System.Management.Automation的引用并导入了该命名空间;
  • 我正在使用IIS Express版本通过Visual Studio 2017运行此程序
  • 这使用.NET Core API项目

using (PowerShell PowerShellInstance = PowerShell.Create())
        {
            // Attempt to get the mailbox listing for the user
            PowerShellInstance.AddScript(
                "$credential = New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList " + user + ",(ConvertTo-SecureString -String " + pass + " -AsPlainText -Force); " +
                "$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $credential -Authentication Basic -AllowRedirection; " +
                "Import-PSSession $Session -DisableNameChecking; " +
                "Get-Mailbox; " +
                "Remove-PSSession $Session");

            // Invoke execution to collect the output
            Collection<PSObject> PSOutput = PowerShellInstance.Invoke();

            // Go through each output returned
            foreach (PSObject outputItem in PSOutput)
            {
                // Dump the output to see what's coming out.
                if (outputItem != null)
                {
                    return new string[] { outputItem.ToString() };
                }
            }
        }

        return new string[] { "Did not get a powershell outputItem" };

0 个答案:

没有答案