C# Calling PowerShell to Execute Commands

2022年10月9日 12点热度 0人点赞 0条评论
内容目录
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.

痴者工良

高级程序员劝退师

文章评论