Create a batch file that mounts the image, launches the game, waits for the game to finish and the unmounts the image. Then you can play the game absolutely trouble-free.
Here a sample batch file that mounts the image specified on the command line and unmounts the current one when no file name has been specified. Set DTOOLSPATH to where Daemon Tools is installed on your PC...
Code:
@echo off
set DTOOLSPATH=F:\PROGRAMS\DTOOLS
if `%1` == `` goto unmount
start %DTOOLSPATH%\daemon -mount 0,%1
goto end
:unmount
start %DTOOLSPATH%\daemon -unmount 0
:end
set DTOOLSPATH=
__________________
Joe Forster/STA
For more information, see the
FileForums forum rules and the
PC Games forum FAQ!
Don't contact me via E-mail or PM to ask for help with anything other than patches (or software in general) done by me, otherwise your request may be deleted without any reply!
Homepage:
http://sta.c64.org, E-mail:
[email protected]; for attachments, send compressed (ZIP or RAR) files only, otherwise your E-mail will bounce back!