Process.Start(url) fails

Had the same problem, solved without IE fallback.
This will make it behave more like just typing it in the ‘Run’ window:

Process.Start(new ProcessStartInfo("https://www.example.com") { UseShellExecute = true });

Note that I’m setting UseShellExecute = true

The default is supposed to be true on .Net Framework, and false on .Net Core

and UWP apps should not use this flag. see docs

(I was running on .Net Core)

Leave a Comment