Reputation: 314
I'm using C# as a programming platform.
Can anyone help me on how can I populate all existing browser in the client machine. And I want also to validate first if the browser (firefox.exe) is existing in the client machine before calling the process of
System.Diagnostics.Process.Start("firefox.exe", "http://stackoverflow.com");
Upvotes: 0
Views: 269
Reputation: 25650
I faced same situation sometimes ago and the answer what I found after alot of R&D was: It's not possible.
Upvotes: 0
Reputation: 18965
You'll need to inspect the Uninstall registry keys to determine if specific programs are available. Things to beware of:
Upvotes: 1