Continuously eject CD/DVD drives
This VBS trick will create a code which will continuously eject all your connected Optical drives. If you put them back in, it will pop them out again.
Copy this code and paste it in Notepad as Ejectcd.vbs or *.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
Save the file as ejectcd.vbs and you will similar icon as below
To stop this script go to Task manager > Process and search for wscript.exe and click on END Process as shown in below image.
Comments
Post a Comment