There is a dll with an ActiveX component that should work in IE. How to find out which keys you need to register in the registry for this component to register correctly? Component - activex plugin vlc. It is necessary to create an inllation file with its slightly modified plugin in installshield.

    1 answer 1

    You can try this:

    1. take a clean machine (i.e. one where this ActiveX was not installed),
    2. save the registry status to the file reg.exe export before.reg ,
    3. register ActiveX dll: regsvr32 activex.dll ,
    4. save the registry status to the file reg.exe export after.reg ,
    5. compare two files line by line (for example, using winmerge).
    • as an option) thanks for the answer!) - ice178