内容目录
private static void RunPowershellScript(string scriptFile)
{
ProcessStartInfo ps = new ProcessStartInfo(@"powershell.exe", scriptFile) { RedirectStandardOutput = true };
//ps.CreateNoWindow = true;
var proc = Process.Start(ps);
proc.OutputDataReceived += (s, e) =>
{
Console.WriteLine(e.Data);
};
}
A PowerShell window will pop up, but it is important to note that PowerShell will not output the complete content.
If you need PowerShell to output all logs of the executed commands, you should set RedirectStandardOutput = false
.
文章评论