How can you enable an ActiveX plugin via the registry? (IE8, Windows 7)

15,679

If you can push a script that will write your CLSID to:

HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Ext\PreApproved

...that should enable it. For more details on ActiveX security wrt instantiation, see this document.

And don't forget to implement IObjectSafety.

Share:
15,679
sXe
Author by

sXe

Updated on June 04, 2022

Comments

  • sXe
    sXe almost 2 years

    At our enterprise we have an ActiveX plugin in IE that is currently disabled for at least some of the users. I need to enable it for everyone, and I'm not sure but I think there's a way to toggle the disabled/enabled status for a plugin via the registry.

    Anyone know how to do this?

  • jamil ahmed
    jamil ahmed over 12 years
    Also, if you're getting a specific error message, that info would help.