vote up 0 vote down star

I am trying to use a CBT hook to receive HCBT_MOVESIZE notifications. It works fine for all applications when I run my program from a folder on my desktop. When I install the application to the "Program Files" or "Program Files (x86" folder I only receive notifications for my own application. The .exe file is signed and works perfectly in Windows XP. I am only receiving these errors in Vista x86/x64. Can anyone offer any suggestions on how to troubleshoot this? Thanks!

flag

Is this an issue 32/64 bit? Do you have a 64 bit version? – Joel Lucsy Jun 1 at 21:24
Same issue in 32 or 64 bit versions of Windows. – Jon Tackabury Jun 1 at 21:37
Also, it doesn't matter if I run the process as an Administrator or just a regular user - the same thing happens. – Jon Tackabury Jun 1 at 21:43

1 Answer

vote up 3 vote down check

Might be a UIPI issue:

User Interface Privilege Isolation (UIPI) implements restrictions in the windows subsystem that prevents lower-privilege applications from sending window messages or installing hooks in higher-privilege processes.

from Microsoft's Windows Integrity Mechanism Design

link|flag
The strange thing is that it works fine until I copy the files to the "Program Files" folder. I haven't been able to find any docs that say that folder is more restrictive. – Jon Tackabury Jun 1 at 23:11
Search the article for "Program Files" and you'll see that there is at least one rule that might explain the difference between Desktop and Program Files. – jdigital Jun 2 at 0:47
According to that article, the only way it should work is when it is in the "Program Files" folder, but I'm seeing the opposite behaviour. :( – Jon Tackabury Jun 2 at 14:37
Have you tried implementing the UIAccess security attribute as described in the article? – jdigital Jun 2 at 17:31
I have. I have a manifest file embedded in the application and the DLLs. I have it set to "asInvoker" and "UIAccess=true". – Jon Tackabury Jun 2 at 20:16
show 2 more comments

Your Answer

Get an OpenID
or

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