If your friends have more than one drive, it will pop all drives continuously...
Be Brilliant Always!!!
- Here is the code
- Just go to notepad
- Then copy and paste the below code exactly... Without the quotes
- Then save the notepad file with "anyfilename.vbs" (without quotes)
- And give to your friends
- If your friends click that file cd drive will pop out continuously
- Then enjoy!!!
- Press ctrl+alt+delete button
- Task manager window will open
- On that press process tab
- Then search for the file something like this (wscript.exe)
- Then click that file and press "end process"
- Thats all
"
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
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
"
(Note: Copy this code which is in between two quotes)