Hello,
i have the 5 disk euro version from ween the procecey, but i cant install them to get the right files for scumm. i try dosbox and a bootdisk, nothing work. anybody a idea what can i do?
greeetings
Need help with Ween, i can´t install game to get the Files
Moderator: ScummVM Team
Did you try to copy the 5 floppies to one directory on your hard drive, and to mount this directory as the A: drive in DOSBox (with another directory mounted as C:)?
Launch the install/setup.exe from A:, and ignore the requests to swap the disks, and continue the installation.
It's usually the easiest way to install multi-disk games...
Launch the install/setup.exe from A:, and ignore the requests to swap the disks, and continue the installation.
It's usually the easiest way to install multi-disk games...
I've seen your message on VOGONS... I won't have any better advice than what you can find there, for the DOSBox path, at least.
If you used a DOS boot disk and your harddrive is NTFS, DOS will not see your harddrive. Versions of DOS earlier than 7 can only see FAT16 formated harddrives. I forget the exact version of DOS that can see FAT32, but it will not see NTFS, either.Boss wrote:i try a bootdisk , then the installer says no hdd found
Collector wrote:If you used a DOS boot disk and your harddrive is NTFS, DOS will not see your harddrive. Versions of DOS earlier than 7 can only see FAT16 formated harddrives. I forget the exact version of DOS that can see FAT32, but it will not see NTFS, either.Boss wrote:i try a bootdisk , then the installer says no hdd found
i use a fat 16 partition for my dos games. i can access with boot disk to this drive. i try another boot disk, but the same problem.
mayby my first disk a broken, can everbody check this , this is disk 1-5
21.10.1992 13:00 8.566 ALL.ASK
21.10.1992 13:00 25 GO.BAT
07.02.2000 18:31 16.895 INSTALL.EXE
21.10.1992 15:42 1.329.152 INTRO.$00
21.10.1992 15:43 1.457.152 INTRO.$01
21.10.1992 15:43 1.457.152 INTRO.$02
21.10.1992 15:43 1.457.152 INTRO.$03
21.10.1992 15:44 1.261.461 INTRO.$04
21.10.1992 13:00 3.524 L360.GDR
21.10.1992 13:00 87.905 LOADER.EXE
21.10.1992 13:00 4.844 LVGA.GDR
21.10.1992 15:44 580 INSTALL.INF
- DrMcCoy
- ScummVM Developer
- Posts: 595
- Joined: Sat Dec 17, 2005 1:33 pm
- Location: Braunschweig, Germany
- Contact:
There is another way: Just concatenate the INTRO.$* (in their numeric order) into an INTRO.STK.
The UNIX way would be
On Windows, it should be
, or at least that works in the Windows 2000 I've got running in a VirtualBox.
You can then delete the INTRO.$* files, and only keep the INTRO.STK.
The UNIX way would be
Code: Select all
cat INTRO.$00 INTRO.$01 INTRO.$02 INTRO.$03 INTRO.$04 > INTRO.STK
Code: Select all
copy /B INTRO.$00+INTRO.$01+INTRO.$02+INTRO.$03+INTRO.$04 INTRO.STK
You can then delete the INTRO.$* files, and only keep the INTRO.STK.