September 16, 200421 yr [Version]Signature=$CHICAGO$[DefaultInstall]AddReg = CDImageAddReg = MountDelReg = Daemon[CDImage]HKCR,"Folder\shell\MakeBootISO\command",,,"CDIMAGE.EXE -LWINDOWS -YD -N -H -X -B%11%\xpBoot.img -OCI -M -D %here% %24%\BootImage.iso"HKCR,"Folder\shell\MakeDataISO\command",,,"CDIMAGE.EXE -LDATA -YD -N -H -X -O -M -D %here% %24%\DataImage.iso"[Mount]HKCR,".ISO",,,"ISO_Image"HKCR,".CUE",,,"ISO_Image"HKCR,".CCD",,,"ISO_Image"HKCR,".BIN",,,"ISO_Image"HKCR,"ISO_Image\Shell\Mount\Command",,,%16422%\D-Tools\"daemon.exe -mount 0,%1[Daemon]HKLM,"SOFTWARE\Microsoft\Windows\CurrentVersion\Run","DAEMON Tools-1033"[Strings]here = """%1"""I thought it was the same as what you listed, but I could've made a mistake...thanks for the help!BTW I didn't mention it, but it DOES end up working - I can right click to mount an image. I just don't know why it launches another installer!
September 16, 200421 yr Author yes, it looks like the exact same 1 as i have but im not sure why your getting that error :S try thisECHO.ECHO Installing DaemonTools v3.47ECHO Please wait...start /wait %systemdrive%\Install\DaemonTools\DaemonTools.msi /qn REBOOT="ReallySuppress"start /wait %systemdrive%\Install\DaemonTools\Daemonscript.msi /qbstart /wait %systemdrive%\Install\DaemonTools\DaemonDriveInstall.DaemonScriptstart /wait %systemdrive%\Install\DaemonTools\DT.exeput this into an autoit script..Run("rundll32 setupapi,InstallHinfSection DefaultInstall 128 .\DaemonTools.inf")& compile it & name it DT.exe thats the only other thing i can think of.. put it in same folder as daemontools.inf& if u dont know how 2 do this.. download autoit , open notepad.. place the above command into it.. name it DT.au3 & compile that .au3 file using autoit compiler, u can right click & choose compile script
September 22, 200421 yr I cannot extract daemonscript.msi from the last version available on daemon tools. Any ideas how to get it?
September 23, 200421 yr Author it works fine here..start the installer dont close the installer, goto run type %tmp% then get the msi file.. its not hard
September 23, 200421 yr This may solve issues :1- If daemonscript installs to C:\, change the installation command to :start /wait .\Daemonscript.msi /qn TARGETDIR="%ProgramFiles%\D-Tools"It will then install to Daemon Tools folder.2- I don't know if it was mentionned before, but you may encounter an issue with DaemonDriveInstall.DaemonScript file (telling that parameters on line 2 are incorrect). You need to have a blank line after DeviceCount|1| (the script parser needs it). So if your script isVersion|1.5.4|2|DeviceCount|1| file length should be 34 bytes and not 32.I hope this helps...
September 23, 200421 yr its not hard Thanks MCT, I don't know why I was looking for a file which gets deleted AFTER the install instead of looking for it during the process . Anyway, I tested my first unattended install last night and for a newbie I am very pleased.Thanks again
September 23, 200421 yr For those of you that don't mind directly editing msi files, I posted a step by step on how I edited V3.47 here. It's the third and final entry on the page.It supresses the reboot prompt, eliminates the desktop icon, and allows you to change the default directory.
October 14, 200421 yr so, for the right click unmount should this be right inf file?[Version]Signature=$CHICAGO$[DefaultInstall]AddReg = MountDelReg = Daemon[Mount]HKCR,".ISO",,,"ISO_Image"HKCR,".CUE",,,"ISO_Image"HKCR,".CCD",,,"ISO_Image"HKCR,".BIN",,,"ISO_Image"HKCR,"ISO_Image\Shell\Mount\Command",,,%16422%\D-Tools\"daemon.exe -mount 0,%1HKCR,"ISO_Image\Shell\Mount\Command",,,%16422%\D-Tools\"daemon.exe -umount 0,%1[Daemon]HKLM,"SOFTWARE\Microsoft\Windows\CurrentVersion\Run","DAEMON Tools-1033"[strings]here = """%1"""...and, the only use for DaemonScript.msi is to decide the number of Virtual Drive?cannot be integrated in only deamontools.msi?There a way to add shell extension from RunOnceEx.cmd?mrmrP.S. There a greater list of "Image Type" that can be mounted? ...like .ngr and so on?
October 14, 200421 yr How to change name of the virtual DVD Drive during install please?I want to rename it to Virtual Drive instead of DVD Driver (I think in english)Thanks
October 15, 200421 yr Author not sure, check a program like regsnap & save changes also, what do u want optimized?i didnt add an unmount option, cuz u can just use "Eject" works 4 me
October 21, 200421 yr I did a little modification on the script[Version]Signature="$Windows NT$"[DefaultInstall]AddReg = CDImage.RegAddReg = Mount.Reg[CDImage.Reg]HKCR,"Folder\shell\MakeISO\command",,,"CDIMAGE.EXE -LDATA -YD -N -H -X -M -D %here% %target%"HKCR,"Folder\shell\MakeOptISO\command",,,"CDIMAGE.EXE -LDATA -YD -N -H -X -O -M -D %here% %otarget%"[Mount.Reg]HKCR,".ISO",,,"ISO_Image"HKCR,".CUE",,,"ISO_Image"HKCR,".CCD",,,"ISO_Image"HKCR,".BIN",,,"ISO_Image"HKCR,".CDI",,,"ISO_Image"HKCR,".BWT",,,"ISO_Image"HKCR,".B5T",,,"ISO_Image"HKCR,".MDS",,,"ISO_Image"HKCR,".NRG",,,"ISO_Image"HKCR,".PDI",,,"ISO_Image"HKCR,"ISO_Image\Shell\Mount\Command",,,"%16422%\D-Tools\daemon.exe -mount 0,%1"HKCR,"ISO_Image\Shell\Unmount\Command",,,%16422%\D-Tools\daemon.exe -unmount 0[Strings]here = """%1"""target = """%1.iso"""otarget = """%1.o.iso"""The Created ISO image well have the same name as the folder and well be created at the same place as the folder, just like creating RAR archives with WinRAR .I didn't need the bootable option, so i removed that, and added an option to not optimize the CD for faster ISO creation, the optimized ISO well end with ".o.iso".Also added all of the file types DAEMON could mount and the Unmount option.
October 21, 200421 yr Author good idea i havent been workin on this/improving it, its good 2 see people still use it!
October 21, 200421 yr there's a turnaroud to add mount command to right cliccking onto tha Virtual CD device in MyComputer that permit to select the image??Like the script onto the DaemonTools site...awxDToolsmrmr
October 21, 200421 yr Author sorry i dont know what u mean :S Just Incase anyone hasnt noticed, i updated the guide on the first page to include some ideas from hotdogee's aforementioned code
Create an account or sign in to comment