I have a third-party web application that relies on a specific OCX file to register on a user's computer. I logged on to the computer as an administrator and registered the file with the command:
REGSVR32 / S MyFile.ocx
This works great and I can use the web application without any problems. In regedit, I see that the control is registered correctly.
However, when another user logs on to a computer that is not an administrator and tries to run a web application, it does not work.
If I add this user to the administrators group and run the REGSVR32 command, it is great for them. Unfortunately, it is not possible for me to allow all users to be administrators on their machines.
Is there a way to register an OCX file with REGSVR32 and provide it to all users, even without administrator rights?
Thanks!
source share