Saturday, 7 July 2012

Create a Harmless Funny Virus with Notepad-Continuously eject CD/DVD drives when you put cd/dvd in the cd/dvd drive

This is the trick with notepad which will be useful to eject cd  continously and harmless
copy and paste the below code in notepad and save it as virus.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: