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
You can try this:
- take a clean machine (i.e. one where this ActiveX was not installed),
- save the registry status to the file
reg.exe export before.reg, - register ActiveX dll:
regsvr32 activex.dll, - save the registry status to the file
reg.exe export after.reg, - compare two files line by line (for example, using winmerge).
- as an option) thanks for the answer!) - ice178
|