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


ghost's Avatar
0 0

i'm wonderin if anyone knows a way to disable the windows xp shutdown command completely. If anyone knows ANYTHING about how windows shuts down that would be great help thanks.


Mr_Cheese's Avatar
0 1

hmm you could write a program to stop timed shutdowns, im not sure if that would work for none timed shutdowns.

just make a program that runs a system command every .3 of a second, using hte command "shutdown -a"

thats all i can think of.


ghost's Avatar
0 0

'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'''


ghost's Avatar
0 0

For my school, If i completely turn off filesharing between my computer and others, they cannot connect to my c$ or shut me down. I also tried using a C++ program to loop through shutdown -a. Ineffective.