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.


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