12

所以我想创建一种异步运行powershell脚本的方法。下面的代码是我到目前为止所拥有的,但它似乎不是异步的,因为它锁定了应用程序并且输出不正确。

    public static string RunScript(string scriptText)
    {
        PowerShell ps = PowerShell.Create().AddScript(scriptText);

        // Create an IAsyncResult object and call the
        // BeginInvoke method to start running the 
        // pipeline asynchronously.
        IAsyncResult async = ps.BeginInvoke();

        // Using the PowerShell.EndInvoke method, get the
        // results from the IAsyncResult object.
        StringBuilder stringBuilder = new StringBuilder();
        foreach (PSObject result in ps.EndInvoke(async))
        {
            stringBuilder.AppendLine(result.Methods.ToString());
        } // End foreach.

        return stringBuilder.ToString();
    }
4

1 回答 1

8

您正在异步调用它。

但是,通过调用EndInvoke().

要实际异步运行它,您还需要使您的方法异步。
您可以通过调用Task.Factory.FromAsync(...)来获取Task<PSObject>异步操作的 a ,然后使用await.

于 2013-07-14T15:09:53.863 回答