vote up 6 vote down star
3

I want to be able to detect and abort OS shutdown from my application, preferably by using the Windows API. I know that it is possible to do this manually using the command shutdown -a In the worst case, I could ShellExecute this, but I was wondering if there was a better way.

Also, how do I find out programatically that the OS is about to shut down, via the Win32 API?

flag

1 Answer

vote up 5 vote down check

From MSDN:

The WM_QUERYENDSESSION message is sent when the user chooses to end the session or when an application calls one of the system shutdown functions. If any application returns zero, the session is not ended. The system stops sending WM_QUERYENDSESSION messages as soon as one application returns zero.

So, my application's WindowProc now processes the WM_QUERYENDSESSION message and returns 0.

Didn't expect it to be this simple; as a bonus, it also works on Windows 2000.

link|flag
Nice, this doesn't have to be community wiki by the way. :) – BobbyShaftoe Feb 26 at 11:00
Well, it is correct enough for me. There may be some quirks or advanced operations for this message, and CW allows more people to edit. – Piskvor Feb 26 at 12:14

Your Answer

Get an OpenID
or

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