Function Reference

CDTray

Opens or closes the CD tray.

CDTray ( "drive", "status" )

 

Parameters

drive The drive letter of the CD tray to control, in the format D:, E:, etc.
status Specifies if you want the CD tray to be open or closed: "open" or "closed"

 

Return Value

Success: Returns 1.
Failure: Returns 0 if drive is locked via CD burning software or if the drive letter is not a CD drive.

 

Remarks

CDTray works as expected with virtual CD drives such as DAEMON Tools.
CDTray does not work on non-local/mapped CD drives; CDTray must be run from the computer whose drive it affects.
CDTray("X:", "close") tends to return 0 even on laptop-style cd trays that can only be closed manually.

 

Related

DriveGetType, DriveStatus

 

Example


; Open the CD tray on drive E:
CDTray("E:", "open")