Sunday, 26 October 2014

Pranks Using Batch File : Part 2

  • Shutdown System With Message
         By this trick victim's system will be shutdown after display message. 
         This happens after victim click on OK button, then bat file force the system to shutdown.
         Steps:
  1. Open Notepad
  2. Copy and paste the below code into Notepad
         @echo off
          cls
          msg * Ha HA Ha
          shutdown -s -c "ERROR! YOU ARE TRAPED"
          Save this file with .bat extension and close it.
          You can then stop executing this file smartly by typing "shutdown -a" in RUN dialog box.
  • Continuously Repeat Message
         By this trick you can be the annoying person for anyone. Because this forces victim to Log Off by creating an infinite cycle of message in the system.
         Steps:
  1. Open Notepad
  2. Copy below text in your Notepad File.
         @echo off 
         :BEGIN 
         msg * Welcome 
         msg * To 
         msg * SPIDER WEB
         begins msg * Thanks for visiting 
         goto BEGIN 
         Save above text with .bat extension.
         Open file by Double Click.  
  • Matrix Effect
         Breathtaking matrix effect happen in your DOS window.
         Steps :
  1. Open Notepad
  2. Copy below text in your notepad file
        @echo off
         color 02 
         :start echo %random% %random% %random% 
         %random% HACKING begins %random% %random% %random% 
         %random% %random% %random% 
         goto start

         Save this with .bat extension. You can also change color and text.



NOTE : Some of the following tricks can cause system damage or can lead process in infinite cycle. So do not try on your own system.

No comments:

Post a Comment