From c20713cc9be3d8ccd27a20579170be761c33d8fe Mon Sep 17 00:00:00 2001 From: Iristyle Date: Mon, 22 Oct 2012 15:19:26 -0400 Subject: [PATCH] Don't dump StartInfo from Process.Start --- SABnzbd/tools/chocolateyInstall.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SABnzbd/tools/chocolateyInstall.ps1 b/SABnzbd/tools/chocolateyInstall.ps1 index ec47a82..d77a935 100644 --- a/SABnzbd/tools/chocolateyInstall.ps1 +++ b/SABnzbd/tools/chocolateyInstall.ps1 @@ -87,7 +87,7 @@ try if (!$upgrade) { #launch local default browser to configure - [Diagnostics.Process]::Start('http://localhost:8080') + [Diagnostics.Process]::Start('http://localhost:8080') | Out-Null } } else