Announcement

Collapse
No announcement yet.

Mount iso to a specific Drive letter

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Mount iso to a specific Drive letter

    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

  • #2
    Hallo,

    does anyone know how to use DAEMONLETTER ?

    Thanks in anticipation.
    Regards

    Comment


    • #3
      DAEMONLETTER is a command from BTEWin (latest version is avaible here: http://es.geocities.com/jpisoft/VdeskBTEWinSetup.zip).
      The command only works with BTEWin not with a batch file.
      To create a batch file with BTEWin you first need to install it (link above). At the installation you can choose what you want to install. Only install BTEWin the other (VDesk, FileTool,...) are not necessary.
      After you successfully installed it right-click on your desktop and press NEW-> BTEWin batch file.
      Then right-click on that file and choose edit (with Make excecutable you can create a exe file which can be run on every pc, BTEWin doesnt need to be installed).

      You can use these commands:
      unmount* = unmounts all images
      mount 0, C:\Images\test.mds = mounts test.mds into drive 0
      C:\Programs\test.exe = starts test.exe
      waitforprogram test.exe = waits until test.exe will be terminated
      Daemondrives 2 = sets the number of Virtual Drives to 2
      Daemonletter 0,W = Device 0 will have the letter W

      Here a nice example guide (its german):
      http://lehrerfortbildung-bw.de/netz/.../CD_Server.pdf
      Heaven Can Wait -- My Band-Page

      Comment


      • #4
        Thanks it's working , i am able to mount iso's to a specific drive.

        One new problem i downloaded daemon346.msi to be used with active directory software installation through group policy.

        Even after gpupdate /force the client is not updated with software. The msi is working normally if i just double click it
        .I dont know why the msi are not installing.

        Comment

        Working...
        X