Sunday, August 29, 2010

Open/Close CD Drive Continuously

Posted by Patel Gopal On 11:00 PM 0 comments

This virus make your CD dirve open/close continuously. dont't worry it will not harm your computer.

Copy and paste following code into Notepad and save as cddrive.vbs


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

0 comments:

Post a Comment