Slug54,
How do you set up a batch file and what do you input into it? Forgive my ignorance, I have never done that before.
Thanks
First off a Batch file is just a simple text file
with each command typed on a seperate line
exactly like you would type it at the command line.
The important thing is it has to be renamed to a
.bat extention instead of .txt
here is a copy of my ydkjcd.bat file.
This file is used to launch one of my You Don't Know Jack CD images. I just call the batch file from my FE.
@echo off
c:
cd\progra~1
cd d-tools
daemon.exe -unmount 0
daemon.exe -mount 0,d:\cdimage\ydkj.ccd
You should be able to copy this to your own .bat file
and just change the path and file name of the cd image. That is if you used the standard install directory for Daemon tools.
FYI the "@echo off" just keeps the coomands from showing on the screen. remove it for trouble shooting your commands by placing REM before it.
also my cd images have a .ccd because I use Clone CD to make them yours may be a .ISO file.
Good Luck
Slug