From ee96a407663a51b7c0c5fa30043d49b9c6c800a6 Mon Sep 17 00:00:00 2001 From: Kyle Burrows Date: Thu, 20 Mar 2025 20:02:16 -0400 Subject: [PATCH] remove logo from powershell (#13) --- src/ShellRunner/CommandRunner.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ShellRunner/CommandRunner.cs b/src/ShellRunner/CommandRunner.cs index bbfad1d..0cd984d 100644 --- a/src/ShellRunner/CommandRunner.cs +++ b/src/ShellRunner/CommandRunner.cs @@ -9,7 +9,7 @@ public static CommandBuilderOptions UsePowershell() var options = new CommandBuilderOptions( ShellType.Powershell, "powershell", - "") + "-NoLogo") { RedirectStandardInput = true, RedirectStandardError = true,