Link to home
Start Free TrialLog in
Avatar of RPPreacher
RPPreacherFlag for United States of America

asked on

Export Installed ActiveX Control

We have an appliance which installs various activex controls when the appliance is first accessed from the client PC.  Rather than force the user to click the assorted bars, pop ups, etc, we would like to deploy all of the controls automatically.

The vendor has been unable to help us.

I found the activex control names on a machine which already had the controls installed.  How can I export these and push them to another PC?  Thanks!
Avatar of HalfAsleep
HalfAsleep

You will have to use the regsvr32 command to register the ActiveX control.  How the file ends up on the PC is not important, but you have to use this command to register the component.

Alternatively, you can use a windows installer that can call the components DllSelfRegister method upon installation, which does the same as the regsvr32 command.

In Visual Studio setup projects, if you set a components' register method to vsdrfCOMSelfReg, it will register itself upon installation.

See https://www.experts-exchange.com/questions/24329519/how-to-pack-activex-control-windows-user-control-in-an-exe-file.html

I am not aware of a silent install method for ActiveX components, but you may have better luck finding one than me.


Avatar of RPPreacher

ASKER

How do I export the activex controls?
ASKER CERTIFIED SOLUTION
Avatar of HalfAsleep
HalfAsleep

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Or should I ask, what do you mean by exporting them?