Hallo everyone,
I am using the below mentioned code in a cmd file to automatically mount a iso file. is there anyway where i can say that it should be specifially f: or e: drive letter !!!
------------------------------
@echo off
set iso=program.iso
set dir=Z:\iso\
set program=C:\Program Files\program\DAD32.EXE
if "%dir%"=="" goto fault
if "%iso%"=="" goto fault
"C:\Program Files\D-Tools\daemon.exe" -unmount 0
"C:\Program Files\D-Tools\daemon.exe" -noicon -mount 0,"%dir%%iso%"
if "%program%"=="" goto end
start "" "%program%"
goto end
:fault
echo De parameters staan niet goed ingesteld. Waarschuw systeembeheer...
:end
set dir=
set iso=
set program=
i belvie with DAEMONLETTER you can fix this problem, can anybody guide me how to use this ?
daemonletter 0, X:
Error :- is not recognized as an internal command
Please help. Thanks in anticipation
I am using the below mentioned code in a cmd file to automatically mount a iso file. is there anyway where i can say that it should be specifially f: or e: drive letter !!!
------------------------------
@echo off
set iso=program.iso
set dir=Z:\iso\
set program=C:\Program Files\program\DAD32.EXE
if "%dir%"=="" goto fault
if "%iso%"=="" goto fault
"C:\Program Files\D-Tools\daemon.exe" -unmount 0
"C:\Program Files\D-Tools\daemon.exe" -noicon -mount 0,"%dir%%iso%"
if "%program%"=="" goto end
start "" "%program%"
goto end
:fault
echo De parameters staan niet goed ingesteld. Waarschuw systeembeheer...
:end
set dir=
set iso=
set program=
i belvie with DAEMONLETTER you can fix this problem, can anybody guide me how to use this ?
daemonletter 0, X:
Error :- is not recognized as an internal command
Please help. Thanks in anticipation
Comment