Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.
Windows Shutdown Hack
Google found this .reg file, download and run it and see if it helps.
http://www.kellys-korner-xp.com/regs_edits/shutdowndisable.reg
'Use Vb I think this Works leave it open for when you want to shut down then just exit it u could have it hidden if u wannted ect ect if u dont have vb just message me tell me what u want it to do i can make it for you!
''CODE STARTS'''
Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer)
If UnloadMode = vbAppWindows Then
' If Windows is trying to shut-down
tmp = MsgBox("Do you want to Shutdown?", vbYesNoCancel, "Confirm Shutdown")
' If No…then abort Shutdown by Inverting Close Mode
If tmp = vbNo Then Cancel = Not Cancel
End If
End Sub'''CODE ENDS'''