· Create a new unmodified text document e.g. [Windows 7] right click any empty space and select New > Text Document
· Open this text document and input the applicable text that the game and mounting software requires
· Save the text document
· Modify the file extension from .txt to .bat
Note: The lines in the batch file will be different based on the game and mounting software used. See DEAMON TOOLS Lite / DEAMON TOOLS PRO or WINCDEmu for additional details.
The below example is for Lemming Revolution & DAEMON Tools Pro Advanced v5.2.0.0348:
@echo off
"%ProgramFiles(x86)%\Portable\DAEMON Tools Pro Advanced v5.2.0.0348\DTAgent.exe" -unmount dt, 0
"%ProgramFiles(x86)%\Portable\DAEMON Tools Pro Advanced v5.2.0.0348\DTAgent.exe" -mount dt, 0,"I:\Emulator Organizer\Files\Systems\PC\Lemmings Revolution\Game\Lemmings Revolution.mds"
ping -n 5 -w 1000 0.0.0.0 > NUL
cd /D "I:\Emulator Organizer\Files\Systems\PC\Lemmings Revolution\Game"
"Lemmings Revolution.exe"
"%ProgramFiles(x86)%\Portable\DAEMON Tools Pro Advanced v5.2.0.0348\DTAgent.exe" -unmount dt, 0
The below example is for Super Puzzle Fighter II Turbo & DAEMON Tools Pro Advanced v5.2.0.0348:
@echo off
"%ProgramFiles(x86)%\Portable\DAEMON Tools Pro Advanced v5.2.0.0348\DTAgent.exe" -unmount dt, 0
"%ProgramFiles(x86)%\Portable\DAEMON Tools Pro Advanced v5.2.0.0348\DTAgent.exe" -mount dt, 0,"I:\Emulator Organizer\Files\Systems\PC\Super Puzzle Fighter II Turbo\Game\Disc Image.iso"
ping -n 5 -w 1000 0.0.0.0 > NUL
cd /D "F:"
"STARTUP.EXE"
The below example is for Final Fantasy VII & DAEMON Tools Pro Advanced v5.2.0.0348:
@echo off
"%ProgramFiles(x86)%\Portable\DAEMON Tools Pro Advanced v5.2.0.0348\DTAgent.exe" -unmount dt, 0
"%ProgramFiles(x86)%\Portable\DAEMON Tools Pro Advanced v5.2.0.0348\DTAgent.exe" -mount dt, 0,"I:\Emulator Organizer\Files\Systems\PC\Final Fantasy VII\Game\FF7DISC1.ISO"
ping -n 5 -w 1000 0.0.0.0 > NUL
cd /D "I:\Emulator Organizer\Files\Systems\PC\Final Fantasy VII\Game"
"BootLoader.exe"
"%ProgramFiles(x86)%\Portable\DAEMON Tools Pro Advanced v5.2.0.0348\DTAgent.exe" -unmount dt, 0