View Single Post
  #3  
Old 04-07-2007, 07:15
Joe Forster/STA's Avatar
Joe Forster/STA Joe Forster/STA is offline
Senior forum member
 
Join Date: Nov 2000
Location: Hungary
Posts: 9,836
Thanks: 20
Thanked 342 Times in 224 Posts
Joe Forster/STA is on a distinguished road
I'm using the following DTM.BAT to mount images in Daemon Tools. Use without any command line parameter to unmount the current image.

Code:
@echo off
set DTOOLSPATH=E:\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!
Reply With Quote