views:

177

answers:

2

Hi!

I need execute some code before Windows shutdown process each time. So, I want block Windows shutdown process for some time. How can i do it from Java or C++ Builder ?

Thanks.

+3  A: 

Use a logoff or shutdown script to launch an exe? This can be set by Group Policy.

Of course, I hope you have a good reason (like my corporate build) to do this. As mentioned in comments, what are you tring to do please?

gbn
It's good reason) I need log this action.
Stas
A: 

See response on WM_POWERBROADCAST message. Also take into account that your ability to prevent shut down can depends on OS (it seems on Vista and later there are additional capabilities).

VitalyVal