vote up 3 vote down star

For a university project I programmed a Internet Explorer Browser Helper Object to process web document information while browsing. It were running successful on Windows XP with IE6 and IE7.

Now I have the issue that under Windows Vista the same BHO needs administrator rights to run. Browser and BHO running if you start the IE as administrator but if you start as normal user it crashes.

The BHO is of course registered on the system and activated in the browser.

What can I do that a user with non-admin rights can run the registered and activated BHO? Or is maybe something else the reason and I totally miss it?

Thank you very much for your help!

flag

2 Answers

vote up 3 vote down check

Not sure if your problem is related to custom actions in your installer but the following two links should help you.

link|flag
Thank you very much! – Mil Oct 4 '08 at 17:11
vote up 0 vote down

You should use a debugger to determine why the addon is crashing. Chances are good that you're attempting to write to a protected location, and when that fails, your code fails to check for an error result.

Using Process Monitor and watching for Access_Denied returns is often helpful, but using a full-debugger is the right way to go.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.