Don't redirect stdout for PowerShell runtime
This commit is contained in:
parent
a740a94de6
commit
5d12617996
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue