Click here to Skip to main content
Click here to Skip to main content

Opening the Internet Browser Programmatically

By , 17 Aug 2011
 
If I remember correctly, then I had some issues with the above method some years ago. It would not always work on some systems.
 
I personally use the following method to get the EXE path to the system's default browser:
 
public static string GetDefaultBrowser()
{
    string browser = string.Empty;
    Microsoft.Win32.RegistryKey key = null;
    try
    {
	object obj = null;
	key = Microsoft.Win32.Registry.ClassesRoot.OpenSubKey(@"HTTP\shell\open\command", false);
	if (key != null)
	{
	    obj = key.GetValue(null);
	    if (obj != null)
	    {
		browser = Convert.ToString(obj);
	    }
	}
 
	if(string.IsNullOrEmpty(browser))
	{
	    key = Microsoft.Win32.Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Classes\Applications\iexplore.exe\shell\open\command", false);
 
	    obj = key.GetValue(null);
	    if (obj != null)
	    {
		browser = Convert.ToString(obj);
	    }
	}
 
	if (!string.IsNullOrEmpty(browser))
	{
	    //trim off quotes
	    browser = key.GetValue(null).ToString().ToLower().Replace("\"", "");
	    if (!browser.EndsWith("exe"))
	    {
		//get rid of everything after the ".exe"
		browser = browser.Substring(0, browser.LastIndexOf(".exe") + 4);
	    }
 
	    //Enable quotes again
	    browser = '"' + browser + '"';
 
	    return browser;
	}
    }
    catch
    {
	//noop
    }
    finally
    {
	if (key != null) key.Close();
    }
 
    return string.Empty;
}

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Michael B. Hansen
Systems Engineer SPAMfighter
Denmark Denmark
Member
I have a MCPD .NET 3.5 EAD and a Bsc in computer science, organizational theory and economics, and work as lead developer on SPAMfighter Exchange Module and SPAMfighter Mail Gateway in SPAMfighter, Europe's leading Anti Spam Filter developer.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralIt is a good way for c#. My way is for beginners :)memberCaner Korkmaz18 Aug '11 - 21:17 
GeneralGood point. I don't normally bother with this that much, as ...memberMichael B. Hansen17 Aug '11 - 23:08 
Good point. I don't normally bother with this that much, as I primarely work with Windows services which normally have the required permissions to the registry, why I didn't think of this being an issue.
 
But you are of course correct, and it is a point to consider in certain cases.
GeneralThis approach would require you to have permissions to read ...memberReiss17 Aug '11 - 22:44 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 18 Aug 2011
Article Copyright 2011 by Michael B. Hansen
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid