I'm trying to use `SetWindowsHookEx` to set up a `WH_SHELL` hook to get notified of system-wide `HSHELL_WINDOWCREATED` and `HSHELL_WINDOWDESTROYED` events. I pass 0 for the final `dwThreadId` argument which, according to [the docs][1], should "associate the hook procedure with all existing threads running in the same desktop as the calling thread". I also pass in the handle to my DLL (`HInstance` in Delphi) for the `hMod` parameter as did all the examples I looked at.

Yet, I only ever get notified of windows created by my own app and - more often than not - my tests result in the desktop process going down in flames once I close down my app. Before you ask, I do call `UnhookWindowsHookEx`. I also always call `CallNextHookEx` from within my handler.

I am running my test app from a limited user account but so far I haven't found any hints indicating that this would play a role... (though that actually surprises me)

AFAICT, I did everything by the book (obviously I didn't but so far I fail to see where).

I'm using Delphi (2007) but that shouldn't really matter I think.

**EDIT:** Maybe I should have mentioned this before: I did download and try a couple of examples (though there are unfortunately not that many available for Delphi - especially none for `WH_SHELL` or `WH_CBT`). While they do not crash the system like my test app does, they still do not capture events from other processes (even though I can verify with ProcessExplorer that they get loaded into them alright). So it seems there is either something wrong with my system configuration or the examples are wrong or it is simply not possible to capture events from other processes. Can anyone enlighten me?

  [1]: http://msdn.microsoft.com/en-us/library/ms644990(VS.85).aspx