C#异步运行Powershell脚本

本文关键字:脚本 Powershell 运行 异步 | 更新日期: 2023-09-27 18:26:01

我正在尝试使用以下方法运行powershell脚本:

>    PowerShellInstance.AddScript(
>                     @"write-output balls;Start-Sleep -s 2;write-output balls;Start-Sleep -s 2;write-output balls;Start-Sleep -s 2");

这很好用,但以下内容则不然。有什么想法吗?

   PowerShellInstance.AddScript(
                    @"c:'folder'script.ps1");

C#异步运行Powershell脚本

这就是为什么。。。

PowerShellInstance.AddScript(
                    @"& ""c:'folder'script.ps1""");