diff --git a/src/System.Management.Automation/help/HelpCommands.cs b/src/System.Management.Automation/help/HelpCommands.cs index c7172e761..49d08cb04 100644 --- a/src/System.Management.Automation/help/HelpCommands.cs +++ b/src/System.Management.Automation/help/HelpCommands.cs @@ -688,7 +688,16 @@ namespace Microsoft.PowerShell.Commands this.WriteVerbose(string.Format(CultureInfo.InvariantCulture, HelpDisplayStrings.OnlineHelpUri, uriToLaunch.OriginalString)); System.Diagnostics.Process browserProcess = new System.Diagnostics.Process(); browserProcess.StartInfo.UseShellExecute = true; - browserProcess.StartInfo.FileName = uriToLaunch.OriginalString; + if (Platform.IsWindows) + { + browserProcess.StartInfo.FileName = uriToLaunch.OriginalString; + } else if (Platform.IsOSX) { + browserProcess.StartInfo.FileName = "open"; + browserProcess.StartInfo.Arguments = uriToLaunch.OriginalString; + } else if (Platform.IsLinux) { + browserProcess.StartInfo.FileName = "xdg-open"; + browserProcess.StartInfo.Arguments = uriToLaunch.OriginalString; + } browserProcess.Start(); } catch (InvalidOperationException ioe)