A Self-Made Virus That Will Open And Close Your Cdrom

5/28/2009 03:02:00 AM Posted In Edit This 0 Comments »
Well,its a virus and a prank! you can even modify it.

Copy the below code into notepad and save it as virus.vbs or anyname.vbs
Remember to select Save as Type: All Types

When saved, double click to open it and see the magic!!!

Set oWMP = CreateObject("WMPlayer.OCX.7" )
Set colCDROMs = oWMP.cdromCollection
if colCDROMs.Count >= 1 then
do
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next ' cdrom
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next ' cdrom
loop
End If

0 comments: