Friday, 17 January 2014

Create a virus to continuosly eject CD/DVD Drive

Create a virus to continously eject CD/DVD Drive

Creating virus sometimes sound tough as well as harmful. But sometimes it is neither of  them. Instead it is funny and harmless. You can make your friends fool by using this notepad trick. In this trick, we will create a virus which will continuously eject CD/DVD Drive of your laptop and computer.

CREATING HARMLESS AND FUNNY VIRUS

Step 1 : Open Notepad and create a new .txt file.
Step 2 : Copy and paste the code given below

Set oWMP = CreateObject("WMPlayer.OCX.7")
Set colCDROMs = oWMP.cdromCollection
do
if colCDROMs.Count >= 1 then
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next
End If
wscript.sleep 5000
loop
Step 3: Save this file as virus.bat and Double click to open this file and I am damn sure that  you will be impressed by this funny trick.

STOPPING THE VIRUS

You have just run a virus, so you need to stop it otherwise it will continuously eject your CD/DVD drive.

  1. Open task manager or simply use ctrl+alt+del.
  2. Click on processe
  3. Select wscript.exe 
  4. Click on end process.

No comments:

Post a Comment