Don't redirect stdout for PowerShell runtime

This commit is contained in:
Pat Hartl 2023-04-01 22:38:13 -05:00
parent a740a94de6
commit 5d12617996

View file

@ -43,7 +43,7 @@ namespace LANCommander.PlaynitePlugin
process.StartInfo.FileName = "powershell.exe";
process.StartInfo.Arguments = $@"-ExecutionPolicy Unrestricted -File ""{path}""";
process.StartInfo.UseShellExecute = false;
process.StartInfo.RedirectStandardOutput = true;
process.StartInfo.RedirectStandardOutput = false;
if (arguments != null)
process.StartInfo.Arguments += " " + arguments;