The Official Computer Tech Support Thread - Music Banter Music Banter

Go Back   Music Banter > Community Center > The Lounge
Register Blogging Today's Posts
Welcome to Music Banter Forum! Make sure to register - it's free and very quick! You have to register before you can post and participate in our discussions with over 70,000 other registered members. After you create your free account, you will be able to customize many options, you will have the full access to over 1,100,000 posts.

Reply
 
Thread Tools Display Modes
Old 08-03-2012, 07:10 PM   #1181 (permalink)
I sleep in your hat
 
Stephen's Avatar
 
Join Date: Mar 2011
Location: Melbourne, Vic. Aus.
Posts: 1,846
Default

Can you get the properties on the exe and choose to run it in compatibility mode with an older version of Windows? Sometimes that works on older emus.
Stephen is offline   Reply With Quote
Old 08-03-2012, 09:05 PM   #1182 (permalink)
Music Addict
 
Join Date: Mar 2009
Posts: 1,711
Default

Quote:
Originally Posted by stp View Post
Can you get the properties on the exe and choose to run it in compatibility mode with an older version of Windows? Sometimes that works on older emus.
I tried setting them to Windows 95, the earliest compatibility mode. No luck, but it was a good suggestion thanks.
midnight rain is offline   Reply With Quote
Old 08-04-2012, 08:51 AM   #1183 (permalink)
nothing
 
mr dave's Avatar
 
Join Date: Mar 2008
Location: everywhere
Posts: 4,315
Default

Quote:
Originally Posted by Tuna View Post
OK this is a question for anyone who has experience with DOS emulators:

I just downloaded DOSBox and am trying to run games on it but can't for the life of me figure out how to get it work. I've tried running it un-extracted on DOSBox, which gave me an 'illegal command' message, and I tried extracting it and then running the application, where I get an error message telling me the application is not compatible with my version of Windows.

Can anyone walk me through the steps?

I'm getting the games from this site by the way:
Best Old Games | Old Games : Free download [eng]

Holy crap this turned out longer than I expected but DOS isn't exactly the most intuitive thing out there. It's not super complicated once you get used to it though. Let me know if this helps or if you're still having issues either with the app or with specific games.

----- and here we go -----

The thing with DOS games and applications is that you still need to use the old command line prompts and enter the actual commands yourself, there's no double clicking the .exe and voila! action.

First you need to extract all the old games into a main parent folder on your system. As an example all my old games go into a folder called 'Abandonware' on my F: drive (with about 50 classics in there)

Next you need to run DOSBox and mount that folder as a virtual drive. The easiest way to do that is by using the following command (just launch DOSBox and type it in)

mount F F:\Abandonware

What that's actually doing is calling the command 'mount' then specifying the virtual drive letter, then specifying the folder you want to associate to the virtual drive. So in your case, change the first F to whatever single letter you prefer then specify the folder where you extracted all your older games into.

If you did it correctly DOSBox will display a message stating "Drive specific letter is mounted as local directory Hard drive letter:\Folder with all your extracted games

Then you need to use old school DOS commands, the main ones you'll be using are:
X:
dir
cd

Replace the X in that first one to the drive letter you specify in the Mount command line. So using my example I'd just type F: and it will change from the default Z:\> to F:\> line to indicate that the current drive has been changed.

Dir as is will present a list of all the contents within the folder. dir /p will parse the information by page in case you have more folders than can be displayed on a single screen's worth of space. Another handy command option for finding files within specific game folders is dir *.exe which will only display executable files, you can also replace that with *.txt to only see text files, etc.

cd stands for Change Directory so once you've changed your folder to point to your games, you'll also need the specific spelling as seen by using the 'dir' command since longer file / folder names get truncated by DOS. So you'll end up with stuff like cd STARWA~1 as the command to change the directory to that specific game folder. cd .. moves you back one step in the directory structure.

Once you're in the game folder you're looking to play you'll then need to run the 'dir' command again to find out the specific name of the file needed to launch the game. Normally it's just the name of the gamename.exe, other times it might be a batch file (gamename.bat) or something like main.exe or launch.exe

Also depending on the game you're trying to play it might require specific hardware that isn't necessarily supported or present (like flight sticks). I've noticed that a lot of games that came out during the final transition from DOS to Windows in the mid 90s are the most problematic too. If you're still having hassles, specify the game and I'll download it and give you a specific list of commands to get it working if possible.
__________________
i am the universe

Quote:
Originally Posted by bandteacher1 View Post
I type whicked fast,
mr dave is offline   Reply With Quote
Old 08-04-2012, 12:05 PM   #1184 (permalink)
Music Addict
 
Join Date: Mar 2009
Posts: 1,711
Default

Quote:
Originally Posted by mr dave View Post
Holy crap this turned out longer than I expected but DOS isn't exactly the most intuitive thing out there. It's not super complicated once you get used to it though. Let me know if this helps or if you're still having issues either with the app or with specific games.

----- and here we go -----

The thing with DOS games and applications is that you still need to use the old command line prompts and enter the actual commands yourself, there's no double clicking the .exe and voila! action.

First you need to extract all the old games into a main parent folder on your system. As an example all my old games go into a folder called 'Abandonware' on my F: drive (with about 50 classics in there)

Next you need to run DOSBox and mount that folder as a virtual drive. The easiest way to do that is by using the following command (just launch DOSBox and type it in)

mount F F:\Abandonware

What that's actually doing is calling the command 'mount' then specifying the virtual drive letter, then specifying the folder you want to associate to the virtual drive. So in your case, change the first F to whatever single letter you prefer then specify the folder where you extracted all your older games into.

If you did it correctly DOSBox will display a message stating "Drive specific letter is mounted as local directory Hard drive letter:\Folder with all your extracted games

Then you need to use old school DOS commands, the main ones you'll be using are:
X:
dir
cd

Replace the X in that first one to the drive letter you specify in the Mount command line. So using my example I'd just type F: and it will change from the default Z:\> to F:\> line to indicate that the current drive has been changed.

Dir as is will present a list of all the contents within the folder. dir /p will parse the information by page in case you have more folders than can be displayed on a single screen's worth of space. Another handy command option for finding files within specific game folders is dir *.exe which will only display executable files, you can also replace that with *.txt to only see text files, etc.

cd stands for Change Directory so once you've changed your folder to point to your games, you'll also need the specific spelling as seen by using the 'dir' command since longer file / folder names get truncated by DOS. So you'll end up with stuff like cd STARWA~1 as the command to change the directory to that specific game folder. cd .. moves you back one step in the directory structure.

Once you're in the game folder you're looking to play you'll then need to run the 'dir' command again to find out the specific name of the file needed to launch the game. Normally it's just the name of the gamename.exe, other times it might be a batch file (gamename.bat) or something like main.exe or launch.exe

Also depending on the game you're trying to play it might require specific hardware that isn't necessarily supported or present (like flight sticks). I've noticed that a lot of games that came out during the final transition from DOS to Windows in the mid 90s are the most problematic too. If you're still having hassles, specify the game and I'll download it and give you a specific list of commands to get it working if possible.
Awesome instructions, it worked perfectly. Sucks this forum doesn't have a 'like' feature for this post. Gonna bookmark it for future use too, thanks.

One last question, is there anyway to enlarge or maximize the DOSBox screen? As it stands, it's pretty small and the maximize option is grayed out.
midnight rain is offline   Reply With Quote
Old 08-04-2012, 12:14 PM   #1185 (permalink)
The Music Guru.
 
Burning Down's Avatar
 
Join Date: Jun 2009
Location: Beyond the Wall
Posts: 4,858
Default

Quote:
Originally Posted by Tuna View Post
Awesome instructions, it worked perfectly. Sucks this forum doesn't have a 'like' feature for this post. Gonna bookmark it for future use too, thanks.

One last question, is there anyway to enlarge or maximize the DOSBox screen? As it stands, it's pretty small and the maximize option is grayed out.
Good to know this works, I will try it. Thanks Dave!

No way to maximize the window as far as I know... if you find a way to make it larger let me know, lol!
Burning Down is offline   Reply With Quote
Old 08-04-2012, 12:16 PM   #1186 (permalink)
Cardboard Box Realtor
 
LoathsomePete's Avatar
 
Join Date: Feb 2009
Location: Hobb's End
Posts: 7,648
Default

What kind of startup menu do you see? Whenever I play around in a virtual machine I can usually make the screen bigger by adding vga=773 to the kernel command line.
LoathsomePete is offline   Reply With Quote
Old 08-05-2012, 07:09 AM   #1187 (permalink)
nothing
 
mr dave's Avatar
 
Join Date: Mar 2008
Location: everywhere
Posts: 4,315
Default

Quote:
Originally Posted by Tuna View Post
Awesome instructions, it worked perfectly. Sucks this forum doesn't have a 'like' feature for this post. Gonna bookmark it for future use too, thanks.

One last question, is there anyway to enlarge or maximize the DOSBox screen? As it stands, it's pretty small and the maximize option is grayed out.
Glad to know it worked

As for maximizing the size... Alt+Enter (default Windows keyboard command to maximize a window) 'works' but there's no easy way to make it look right on a widescreen monitor since most of those old DOS games are locked to specific resolutions with 4:3 aspect ratios. Get used to everyone looking a little shorter and wider than normal, OR big old 17" 'square' monitors sell for like $10 on places like kijiji or craig's list.

However if you've got a Radeon type video card you might need to tweak your scaling options or you'll just end up with massive black bars around the edge of the window. If that's the case launch your AMD VISION Engine Control Center (should be in your start menu) then open the Digital Flat-Panels tab on the left, then click on Scaling Options, then check the box for 'Enable GPU Scaling' within the Image Scaling panel on the right hand side of the window.

What classics are you guys enjoying?
__________________
i am the universe

Quote:
Originally Posted by bandteacher1 View Post
I type whicked fast,
mr dave is offline   Reply With Quote
Old 08-09-2012, 08:11 AM   #1188 (permalink)
Music Addict
 
Join Date: Mar 2009
Posts: 1,711
Default

Quote:
Originally Posted by mr dave View Post
Glad to know it worked

As for maximizing the size... Alt+Enter (default Windows keyboard command to maximize a window) 'works' but there's no easy way to make it look right on a widescreen monitor since most of those old DOS games are locked to specific resolutions with 4:3 aspect ratios. Get used to everyone looking a little shorter and wider than normal, OR big old 17" 'square' monitors sell for like $10 on places like kijiji or craig's list.

However if you've got a Radeon type video card you might need to tweak your scaling options or you'll just end up with massive black bars around the edge of the window. If that's the case launch your AMD VISION Engine Control Center (should be in your start menu) then open the Digital Flat-Panels tab on the left, then click on Scaling Options, then check the box for 'Enable GPU Scaling' within the Image Scaling panel on the right hand side of the window.

What classics are you guys enjoying?
I just downloaded Sid Meier's Pirates! and SimCity 2000.

Never played Pirates, but I used to play SimCity a ton, so it should be interesting revisiting it. I'll probably get around to all the other old classics in due time, and I'm open to recommendations if you have any.
midnight rain is offline   Reply With Quote
Old 08-19-2012, 08:05 PM   #1189 (permalink)
~de geso
 
Chrysalis's Avatar
 
Join Date: Jan 2011
Posts: 495
Default

Earlier today, I was using my laptop, which had around 11GB of free space left. I decided to download a game demo on Steam, and it tells me that I now have around 50GB of space left. I never uninstalled any games (which use up a lot of my HD's memory) today, so I'm very concerned. Can anyone help me with this problem?
Chrysalis is offline   Reply With Quote
Old 08-19-2012, 08:49 PM   #1190 (permalink)
eat the masters
 
debaserr's Avatar
 
Join Date: Aug 2008
Posts: 5,467
Default

You probably emptied your recycle bin at some point.
__________________
Last.FM
debaserr is offline   Reply With Quote
Reply


Similar Threads



© 2003-2024 Advameg, Inc.