Show DevBest [REL][Batch] Self destruct

Status
Not open for further replies.

Macemore

Circumcised pineapples
Aug 26, 2011
1,681
819
I got bored and I've recently re-fell in love with batch, I'll explain the code as easy as I can:
Don't use this one, it wont work
PHP:
 @ECHO OFF // Stops displaying the commands
echo Beginning self destruct sequence // Says "Beginning self destruct sequence"
shutdown -c "Self destruct activated" -s // Opens a window saying "Self destruct activated" and shuts down
echo goodbye... // says good bye
pause // press any key to continue
exit //closes the window
I did PHP highlighting for the comments, use the fallowing code for a working version
Code:
@ECHO OFF
echo Beggining self destruct sequence
shutdown -c "Self destruct activated" -s
echo goodbye...
pause
exit
You have less than a minute to stop the shutdown, open start, all programs, right click "Startup", press open, and put the .bat file with the above code inside it. To stop the shutdown you press start, type in CMD, press enter, and type in shutdown -a and the shutdown is ended.

this is useless unless some one knows the password to your computer. by putting the file in the startup folder it will automatically be launched after you login and your desktop loads. Very useless but fun :)


Enjoy.
 
Status
Not open for further replies.

Users who are viewing this thread

Top