标签: c# powershell scripting
我有一个PowerShell脚本,一旦执行就会侦听端口。我希望执行此脚本并在C#程序继续运行时保持运行。
以下是我现在所拥有的内容,但是当它到达此行时,它会一直等到脚本完成(它从未执行过)。
Process proc = Process.Start("powershell.exe", @"/K tcdrvrcunit.exe Automation.txt"); proc.WaitForExit(); Console.WriteLine(proc.ProcessName);