Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to retrieve, in my program, a list of currently installed Internet Explorer add-ons (Browser Helper Objects), and if possible their enabled/disabled status.

Since anti-spyware programs can get this list from somewhere, is there a simple way to request this list programatically?

EDIT: Thanks to @Stefan, who pointed me to the right registry keys (all HKLM):

// BHOs
HKLM\Software\Microsoft\Windows\CurrentVersion\explorer\Browser Helper Objects 
// IE toolbars
HKLM\Software\Microsoft\Internet Explorer\Toolbar
// IE extensions
HKLM\Software\Microsoft\Internet Explorer\Extensions
share|improve this question

3 Answers

up vote 8 down vote accepted

The BHOs are registered under

HKLM\Software\Microsoft\Windows\CurrentVersion\explorer\Browser Helper Objects

IE toolbars are registered under

HKLM\Software\Microsoft\Internet Explorer\Toolbar
share|improve this answer
Thank you, that's exactly what I was looking for. – Piskvor Jan 5 '09 at 19:20

I use HijackThis.

[http://www.trendsecure.com/portal/en-US/tools/security_tools/hijackthis/overview]

It shows a list of BHOs (along with a -lot- of other useful information), but unfortunately, it doesn't show enabled/disabled status.

share|improve this answer
Thanks; I'm aware that it's possible to find this list manually, but I need to do this from a program/script. – Piskvor Jan 5 '09 at 15:37

If you are talking about javascript, I found some tips, thanks to a tool created by me and called "Javascript Self Explorer"* that you can download at software dot sitesbr dot net in the Web programming menu.

Opening this javascript Program using IE, I saw that navigator object doesn't show the plugins, but, IE lists the plugins present in a document.

Useful snippets of code:

if( document.plugins.length > 0){ ... }

if( document.plugins[n].src.match(/\.swf/i){ ... }

if( document.plugins[n].readyState == 'complete' ) { ... }

A cross-browser function to check if a browser has the Flash plugin, made with information from JSE*:

function hasFlashPlugin(){ /* Cross-browser, including IE */
    /* Sergio Abreu 
     * sites dot sitesbr dot net
     * 2013-05-01
     */
if( navigator.plugins.length > 0){
      for (var i = 0; i < navigator.plugins.length; i++) {
    pl = navigator.plugins[i];
    if( pl.description && pl.description.match(/flash/i) ||
        pl.name && pl.name.match(/flash/i)) return true;
    }
} else if( document.plugins.length > 0) { // IE
 for (var i = 0; i < document.plugins.length; i++) {
    pl = document.plugins[i];
    if( pl.src && pl.src.match(/\.swf/i) &&
        pl.readyState && pl.readyState == 'complete' ) return true;
    }
}

return false; }

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.