Mil
Mil

Reputation: 756

Browser Helper Objects (BHO) in Windows Vista only with admin rights?

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!

Upvotes: 4

Views: 1763

Answers (2)

Adam Caviness
Adam Caviness

Reputation: 3484

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

Upvotes: 4

EricLaw
EricLaw

Reputation: 57085

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.

Upvotes: 0

Related Questions