views:

962

answers:

2

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!

+3  A: 

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

Adam Caviness
Thank you very much!
Mil
A: 

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.

EricLaw -MSFT-