Thursday, October 9, 2008

CD Rom Virus Prank

How To Make An 'Open/Close CDROM' Virus Prank

Sometimes you want to make a prank on your friends and teammtes and don't know how. Why not open and close their CDROMs until they go mad because don't know what happens?

1. Open Notepad and type the following code:

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

2. Save it as MyComputer.vbs or whatever name you want. Be sure the change the 'Save as Type' to 'All Files' . The extension .vbs must be there no matter what name you use.

3. When somebody opens the 'virus' the CD/DVDROMs of it's computer will open and close until you go crazy because it can be stopped by closing the CD/DVDROMs.

4. The only way to stop this is to press CTRL+ALT+DEL and stop the process wscript.exe.

No comments: