How can I mount a BIN/CUE and run a program in Windows 3.x? #9
-
Hello, I was wondering if it is possible to have a shortcut in Windows 3.x that would point to a batch file, so that the process of mounting/running/un-mounting becomes automatic. I want it to:
All my attempts so far have failed with a "Cannot start application" message. Maybe you can help, please? |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 2 replies
-
You need to mount the CD before starting win 3.x. You can however, start the game directory as such:
And Windows will automatically start the game on startup. But when you close the game you remain in Windows. This can be fixed with a program called "RUNEXIT. Run it as such:
And you will return to DOS. |
Beta Was this translation helpful? Give feedback.
-
Thank you for your reply, I appreciate it. Mounting a BIN/CUE in a batch before running Windows is how I am doing it now, along with RUNEXIT to quit Windows and un-mount the image. I was hoping somebody would know about a Windows program that could do what I'm looking for. Thank you for your time. |
Beta Was this translation helpful? Give feedback.
-
A better question, why do you want to do this differently, what are you trying to achieve? Maybe if you explain the end goal we can help. Btw, this is how I'm setting up my Win3.x games which I consider to be the best method:
This way the game installations are kept completely separate so there's zero chance of dependency clashes (e.g. a particular game needing an older version of some library). The extra disk space required is negligible, and disk is cheap :) I just don't see what are you hoping to achieve by "automounting" as you'd need to install the games anyway. Plus you can always just use a bunch of different batch files to mount different ISOs if you want to use a single Win3.1 installation for multiple games. Launching DOSBox and Win3.1 is very quick, so mounting/unmounting ISOs from within Win3.1 sounds like an academic exercise (and not possible, as pointed out; I need to exit and restart Win3.1 on real hardware too when I want to mount another ISO via DOS commands, that's the only way). |
Beta Was this translation helpful? Give feedback.
-
Hello and thanks you for your reply,
I'd like to make the process of mounting ISOs, running a game, quitting Windows when I'm done, and un-mounting automatic, if at all possible without resorting to external GUIs, loaders or profiles.
Indeed, that is exactly what it is. I have batches to do multiple operations if necessary before (and after) running games. Everything works fine, but I've always been curious about about running DOS apps from a batch in Windows 3.x. |
Beta Was this translation helpful? Give feedback.
-
transferred to: #9 |
Beta Was this translation helpful? Give feedback.
A better question, why do you want to do this differently, what are you trying to achieve? Maybe if you explain the end goal we can help.
Btw, this is how I'm setting up my Win3.x games which I consider to be the best method:
This way the game installations are kept compl…