Visual Basic Script Files
Commonly known as .vbs files
This page will attempt to cover as many things to do with visual basic script files as possible. If you know one that you can't see below, send a request on the contact page.
CD Drive Hack
This little code will cause your CD drive to constantly stay out.
1. Open a notepad and type the following:
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
2. Save as a .vbs file. To stop, open the task manager and stop a task called "wscript".