我正在使用桌面应用程序中的System.Diagnostics.Process.Start
启动默认浏览器来访问链接,如下所示。这是在Windows 8 Pro RTM上使用C#和.NET 4.0。
System.Diagnostics.Process.Start(new ProcessStartInfo
{
FileName = @"http://www.google.com",
UseShellExecute = true
});
这在Windows 7下工作正常,但在Windows 8下我得到一个可以在LINQPad中重现的异常。例外情况是:
UseShellExecute = true
给出Win32Exception:Class未注册。
UseShellExecute = false
给出Win32Exception:系统找不到指定的文件。
如何在默认浏览器中打开网址?