Ok, best I could come up with
The following python script will wait for a shutdown, abort it, call your script, then restart the shutdown. Add it to start at startup.
EDIT requires pywin32 python extension availible Here
1 Problem is it won't abort a shutdown from the start menu or power button. Only software shutdowns. You can disable them like this and this. If you still want the ability to manually shutdown your pc, add a batch file NAMED ANYTHING BUT "SHUTDOWN" with the following contents
shutdown -f -s
python script
import win32security
import win32api
import sys
import time
from ntsecuritycon import *
import os
import subprocess
Pre_ShutdownScript = "your Script"
Shutdown = True
# Get the process token
flags = TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY
htoken = win32security.OpenProcessToken(win32api.GetCurrentProcess(), flags)
# Get the ID for the system shutdown privilege.
idd = win32security.LookupPrivilegeValue(None, SE_SHUTDOWN_NAME)
while Shutdown:
try:
win32security.AdjustTokenPrivileges(htoken, 0, [(idd, SE_PRIVILEGE_ENABLED)])
win32api.AbortSystemShutdown(None)
Shutdown = False
except:
win32security.AdjustTokenPrivileges(htoken, 0, [(idd, 0)])
time.sleep(1)
try:
subprocess.call([Pre_ShutdownScript])
except:
pass
os.system("shutdown -r -t 1")