change the colour head lines

Tuesday 9 July 2013

CD DRIVE EJECT SCRIPTS

Open cd drive with notepad trick
* Go to Start >> Run
* Type Notepad and hit Enter
* Now in Notepad type:

   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

* Go to File >> Save As...
* Type Eject.vbs and click Save
- than double click the Eject.vbs
  and stop this process just restart the system
  have fun

No comments:

Post a Comment