Jump to content

Run on Shutdown


dantay9
 Share

Recommended Posts

I have a working code except for the fact that when the shutdown is intercepted, the shutdown is aborted, but the run function won't work. The whole script exits before it can be called. Is the computer shutting down the script before the abort function is called?

$WM_QUERYENDSESSION = 0x0011

GUIRegisterMsg($WM_QUERYENDSESSION, "Intercept_Shutdown")

GUICreate("PreventShutdownGUI")

GUISetState(@SW_HIDE)

Global $b_ShutdownInitiated = False

While 1

If $b_ShutdownInitiated = True Then

RunWait('"' & @ComSpec & '" \c shutdown -a', '', @SW_HIDE)

Run("C:\Documents and Settings\All Users\Shutdown\Run On Shutdown.exe")

EndIf

Sleep(5)

WEnd

Func Intercept_Shutdown()

$b_ShutdownInitiated = True

Return False

EndFunc ;==>Intercept_Shutdown

Edited by dantay9
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...