1.

Solve : how to reject cdrom?

Answer»

RSM command can be used to reject / load for cdrom

but i can not find correct param ?

i have 2 HDDs and 1 CD-ROM 1 CD/RWNot sure what the question is. RSM manages media pools. If you truly need info on RSM, check out:

http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/rsm.mspx

If you just want to eject a CD drawer, this little script will do fine:

Code: [Select]SET WMP = CreateObject("WMPlayer.ocx")
Set colCDROMS = WMP.CDROMCollection

If colCDROMS.Count > -1 Then
For i = 0 to colCDROMS.Count - 1
colCDROMS.Item(i).Eject
Next
End If

Save the script with a VBS extension and RUN from the command line as: cscript scriptname.vbs

Hope this helps. 8-)THANKS

and can not we use rsm command to ecject / load CD/DWD-RW in DOS ?


i heard that it is possiple ;



Discussion

No Comment Found