1

I use Opera as my default browser but use Chrome just as often - I just use two separate browsers for two separate groups of tasks.

If I want to open a URL in Opera, my default browser, it's very simple:

Process.Start("https://www.google.com")

However, what if I want to open a URL in a non-default browser, how can I achieve that?

Adam
  • 11
  • 2

1 Answers1

0
Process.Start("iexplore", "https://www.google.com")

That would open the URL in IE, regardless of the default browser. You would need to specify the EXE file path for your preferred browser in the same way.

jmcilhinney
  • 50,448
  • 5
  • 26
  • 46