![]() |
Last Visit : never :: 2013-5-24 @ 02:17 pm : Now | |||
FAQ |
Search |
Memberlist |
Usergroups |
|
Register |
Profile |
Messages |
Log in |
|
| Forum Index :: DOSBox Games/Apps :: | |
V For Victory-Install Issue
|
|
|---|---|
V For Victory-Install Issue :: 2012-3-19 @ 09:34 pm
|
|
|
DJSRC Newbie Joined: 2012-03-19 Posts: 6 |
Hi:
I have the series on floppies, and I just can't seem to get the Utah Beach game loaded in DOSBOX, let alone running, no matter what I do, such as trying to load from the floppies, after mounting the A drive, or even downloading into the C drive, and then trying to run INSTALL from there. START doesn't work either. It starts the install, and then says there is no appropriate drive to download into, even after I have properly mounted the C drive, and then I type DIR, and it shows me the files on that drive. Other games like: Doom, Merchant Prince, etc., no prob. (BTW, I can't believe that I just recently got my US NAVY FIGHTERS CD working for the first time, after buying it lotsa years ago, with the help of DOXBOX .74,. I was thrilled.) Re: V4V again, I recall having a heck of a time installing and running the games in the past, as well. I am more ancient than even DOS, , but I must say I am stumped on this one.
Any help would be apprieciated. Thanks! |
|
|
Re: V For Victory-Install Issue :: 2012-3-19 @ 10:21 pm
|
|
|
Dominus DOSBox Moderator Joined: 2002-10-03 Posts: 4635 Location: Vienna |
Give us your exact mountings, all of them _________________ Windows 3.1x guide for DOSBox 60 seconds guide to DOSBox DOSBox SVN snapshot for OS X (10.4-10.8 ppc/intel) codesigned for gatekeeper |
|
|
Re: V For Victory-Install Issue :: 2012-3-20 @ 09:32 pm
|
|
|
DJSRC Newbie Joined: 2012-03-19 Posts: 6 |
Thanks for getting back so quickly. This is embarrassing for me because I actually used to be a dedicated soldier in the vast army of DOS gamers, eventually even achieving the rank of KERNEL.
(Trying to install the game from the files copied to the C Drive first, with my DOS Game Folder being "DOS", and renaming my V4V Subfolder as "V4V-D-Day"): (Within the DOSBOX .74 Shell in Drive Z
Mount c c:\dos\v4v-d-day c: dir (to verify that the copied files are seen on c) install (I then get the blue "V for Victory, Uah Beach, Installation Program" window. It says: "Press a key to continue", which I do, and then I get the "Select a drive for installation" window, in which it shows NO drive, and it then immediately shows a red window with the message "Sorry, no suitable installation drive is present. Press a dey to continue.) (I press a key, and it takes me back to) c: (From the Floppy:) mount a a:\ mount c c:\dos\v4v-d-day a: dir (to verify that the a drive is present) install c (It takes me to the same blue window, and then the same red window, with the same negative results.) I know just the slightest incorrect keystroke in DOS will be a disaster, but I can't seem to figure this out on my own. I got other great DOS classics running just recently with no prob. Thanks again, Dazed & Confused |
|
|
Re: V For Victory-Install Issue :: 2012-3-20 @ 10:43 pm
|
|
|
catchaserguns Member Joined: 2006-08-19 Posts: 131 |
Here is the proper mount for I think. I could be wrong.
Mount c c:\dos mount a a:\ -t floppy A: Install |
|
|
Re: V For Victory-Install Issue :: 2012-3-21 @ 03:29 pm
|
|
|
DJSRC Newbie Joined: 2012-03-19 Posts: 6 |
Hi:
It looks perfectly workable, and I tried it, but unfortunately with the exact same resulting red screen saying there is no suitable drive to install into. Anyway, I thought that the "-T", loads MSDEX.exe into a mounted CDROM drive which would be accessed during a game, along with game files installed on a hard drive. To my knowledge, there are no game files on the floppy, which are accessed during gameplay, negating any need for the "-T". |
|
|
Re: V For Victory-Install Issue :: 2012-3-21 @ 03:43 pm
|
|
|
Dominus DOSBox Moderator Joined: 2002-10-03 Posts: 4635 Location: Vienna |
-t gives the type and can be floppy, cdrom or iso _________________ Windows 3.1x guide for DOSBox 60 seconds guide to DOSBox DOSBox SVN snapshot for OS X (10.4-10.8 ppc/intel) codesigned for gatekeeper |
|
|
Re: V For Victory-Install Issue :: 2012-3-21 @ 06:45 pm
|
|
|
ripsaw8080 DOSBox Author Joined: 2006-04-25 Posts: 2906 |
The installer calls INT 2F/150B for each active drive, and will only allow installation on drives where BX != 0xADAD. This is actually an erroneous test because BX == 0xADAD for any drive when MSCDEX is installed. It should be checking for AX == 0 to find drives that are not cdroms. This flaw in the installer's programming can be avoided on real systems by not loading MSCDEX, but it's not currently possible in DOSBox because of how the function is handled.
One solution is to change the value of BX based on the existence of the MSCDEX device. DOSBox creates its emulated MSCDEX device when the first cdrom is mounted, but subsequently unmounting all cdroms does not remove or otherwise deactivate the device, so this approach follows that design: Code: case 0x150B: /* Valid CDROM drive ? */
reg_ax = (mscdex->IsValidDrive(reg_cx) ? 0x5ad8 : 0x0000); - reg_bx = 0xADAD; + if (mscdex->rootDriverHeaderSeg != 0) reg_bx = 0xADAD; return true; Another approach is to check (mscdex->GetNumDrives() != 0) so you could unmount all cdroms and the function would indicate MSCDEX is not loaded. More flexible, but not fully accurate because the device might still exist. |
|
|
Re: V For Victory-Install Issue :: 2012-3-21 @ 08:29 pm
|
|
|
DJSRC Newbie Joined: 2012-03-19 Posts: 6 |
What?
![]() |
|
|
Re: V For Victory-Install Issue :: 2012-3-26 @ 12:17 am
|
|
|
DJSRC Newbie Joined: 2012-03-19 Posts: 6 |
Yes, yes.
I appreciate your avatars. Have you reviewed the new IPhone App: Grafighters? Never mind. Don't get me started.
I am a legitimate user of the V-for-V Series. No matter what I do, I cannot access the programs, within your SHELL, even though you state that you fully support this series. If you support it, please let me know how to access it. Otherwise, I assume there are other issues involved here, in which you don't need to respond. Just lower the support level of this program, if that is the case. TY |
|
|
Re: V For Victory-Install Issue :: 2012-3-26 @ 10:11 am
|
|
|
ripsaw8080 DOSBox Author Joined: 2006-04-25 Posts: 2906 |
Quote: even though you state that you fully support this series.
If you're referring to the compatibility list, those reports are contributed by users, and do not represent the opinion of anyone other than the contributor. However, I think the reported support level is accurate for the game itself; it's only the game's installer that is snagged on a compatibility issue. The game files are packaged in what appears to be a proprietary archive format, so using the installer is the only practical way to install the game from original media. Run the attached program in DOSBox before running the installer, and you should be able to install the game. The installer may complain about not finding AUTOEXEC.BAT, which it wants for setting up an SVGA driver, but that is not needed because DOSBox has built-in VESA support with the default machine=svga_s3 setting. |
|
|
Re: V For Victory-Install Issue :: 2012-4-19 @ 11:14 pm
|
|
|
DJSRC Newbie Joined: 2012-03-19 Posts: 6 |
Happy Happy Joy Joy!
The 1KB Fix works like a charm! You, my friend, are a genius, and way ahead of your time. Such powers have been duly noted by the Central Committee. A comic book series could possibly be in the offing here. (Of course, notwithstanding that the Situation is first in line on that one.) May the Force be with you. |
|
|
|
page 1 of 1
|
|
| All times are GMT |
| Moderate |
|---|
| Quick Reply & Options | |
|---|---|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum |
|
2002-2003 zetafleet.dom.