Link to home
Start Free TrialLog in
Avatar of ucidcs
ucidcsFlag for United States of America

asked on

System.Runtime.InteropServices.COMException error with non Administrators

I developed a VB.Net application logged in with administrative rights.  I compiled it and ran the .exe and everything worked great, but when users without administrative rights log in, the .exe gave an access denied error.  So I logged in as a Power User and tried to run the solution through Visual Studio 2003, it said
An unhandled exception of type 'System.Runtime.InteropServices.COMException' occurred

Additional information: COM object with CLSID {61F0022F-C7A0-4860-8DFC-FBF8CBCA2FB1} is either not valid or not registered.

Anybody know how I can fix this?

Thank you.
Avatar of Éric Moreau
Éric Moreau
Flag of Canada image

Hi ucidcs,

There is an option in the installation saying "Just me" or "Everyone on this PC". Have you selected the second.

Cheers!
Avatar of ucidcs

ASKER

I'm running it through Visual Studio 2003, so since I haven't installed it, it hasn't asked me that question.
And what is this COM component? It may have been installed only for the Admin account!
Avatar of ucidcs

ASKER

There are two COM, Interop.DocumentProcessor71 and Interop.LFSO71Lib.  If it was installed only for the Admin account, how can I correct this?
ASKER CERTIFIED SOLUTION
Avatar of Éric Moreau
Éric Moreau
Flag of Canada image

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
Avatar of ucidcs

ASKER

I registered (regsvr32) the 2 components logged in as a poweruser and that seemed to work.  Thank you for your help.