Annoyances.org
Home » Windows 95 Discussion Forum » Message 1004141888 » Entire Thread Search | Help | Home
  
Question about 'My extra-cool DOS game won't run under Windows'
Showing all messages in thread #1004141888
Windows 95 Annoyances Discussion Forum


The following are all of the messages in this thread (5 in all), shown in chronological order. Click any message subject to view that message by itself or to view the thread hierarchy.
Question about 'My extra-cool DOS game won't run under Windows'
Friday, October 26, 2001 at 5:18 pm
Posted by Shaun Laister (1 messages posted)

I have a question about My extra-cool DOS game won't run under Windows:

Does anyone know the best set ups for the Autoexec.bat and config.sys files to enable me to obtain the highest base memory and best performance of DOS games when using Windows 95? Thanks

[Reply or follow-up to this message]

re: Question about 'My extra-cool DOS game won't run under Windows'
Friday, October 26, 2001 at 11:38 pm
Posted by Melee Lim (1 messages posted)

I'm windows98 user. And not well English. -_-;;(sorry) not best, but simply configreion. edit config.sys(edit c:\configure.sys) FILES = 20 BUFFERS = 20 DEVICE=C:\DOS\HIMEM.SYS DOS=HIGH,UMB DEVICE=C:\DOS\EMM386.EXE RAM(or noems ;no ems) {SHELL=C:\DOS\COMMAND.COM /P(or c:\command.com?)}--not important. edit autoexec.bat(edit c:\autoexec.bat ;not spacial) @ECHO OFF path=c:\dos;c:\windows;c:\~~~ mouse.com C:\DOS\SMARTDRV.exe # sound configretion... so on. important! Find imform.-_-;; I find it. http://hyunam.tnut.ac.kr/~electro/lecture/computer/config.html(Korean site) wanted! I'll set up '98lite'(Ie 4.0 remover, and...). but It wanted windows 95 files. In win95 cd, file names... EXPLORER.EXE, SHELL32.DLL, COMDLG32.DLL. I want That files. Would you copy the files and mail me? mail to: melee02@dreamwiz.com

[Reply or follow-up to this message]

re: Question about 'My extra-cool DOS game won't run under Windows'
Sunday, November 10, 2002 at 7:42 pm
Posted by Spinor Ezekiel (1 messages posted)

try doing this;) http://www.siroccostation.com/memxp.html

[Reply or follow-up to this message]

re: Question about 'My extra-cool DOS game won't run under Windows'
Saturday, July 26, 2003 at 9:40 am
Posted by dhm (966 messages posted)

I have a lot of DOS stuff that is important to me.

Step number 1

  Click on Run and Enter:

     attrib c:\msdos.sys -s -h -r

  That changes it from a hidden, read-only, system file into an ordinary file.

Step number 2
   In Run:

      edit msdos.sys

   It's just a text file.

Step Number 3:

   Change:

      bootGUI=1

   to

      bootGUI=0

and save the file.  "bootGUI" is a funny way of saying "run Windows."

Step number 4 (optional):
  
   Run:

      attrib C:\MSDOS.SYS +s +h +r

   Actually, Windows will use the file just fine.

Step Number 5:

   Boot up.  You will find yourself staring at the DOS prompt after the CONFIG.SYS 
and AUTOEXEC.BAT have run.  Then enter at the DOS prompt:

   win

And your windows session will start as usual.

Step Number 6:

   You will need an AUTOEXEC.BAT that loads the mouse for DOS programs that need 
it.  Windows hates that.  Every time it boots it searches your AUTOEXEC.BAT to find 
a line like:

      LH C:\DOS\MOUSE.SYS /Y

(or whatever your syntax for loading the mouse has been) and REMs it out.  To fool 
it write a file called MOUSLOAD.BAT (or whatever) with that line in it and put this 
line in the AUTOEXEC.BAT:

      call mousload.bat

Step Number 7:

  Some of your DOS programs use "direct disk access" and the computer will shut down 
after a warning.  Put this line in your AUTOEXEC.BAT:

  Lock C:

When you are booting it will halt and show a warning and demand you enter a Y or 
N before continuing.  If you intend this to be a DOS session you can enter the Y. 
 Remember, you can now mess up the very long filename system.  If you do, Scandisk 
from Windows can partially fix the problem, but if any Windows program was looking 
for a file that had a name over 8 characters (+ extension) it won't be able to find 
it.  YOU ARE ON THIN ICE.  Just operate on good old DOS files during your DOS session. 
 I'm sure your games will do that.  

Now the COPY command, when it's in a .BAT file can be made to skip its questions 
by adding a /Y argument.  LOCK will not allow that.

  UNLOCK C: is the opposite operation and can be put in a .BAT file without any halting. 
 Like changing the MSDOS.SYS file, use common sense and do not mess up essential 
Windows stuff.  I have 2 hard drives and I am keeping the DOS stuff on the old, small 
one.  That also causes problems and you might want to partition off a 2Gb section 
of your C: drive and format that as your D: drive put all the DOS stuff on that. 
 BTW, I looked up the syntax of the MSCDEX.EXE and renamed  my CD ROM as R:.  Once 
the AUTOEXEC.BAT has done that, both DOS and Windows refer to it as R:, not D: or 
E: or whatever.

Step Number 8:

I don't know what the problem with the MOUSE.SYS might be.  I have a very late model 
of Windows 95 just before Windows 98 came out and I haven't locked or crashed or 
anything.  My DOS mouse module is from DOS 6.22.  Anyway, I looked up the CHOICE 
operation with:

     help choice

which called up DOS 6.22's explanation for the syntax.  I writing this from the public 
library so the syntax isn't in front of me.  It's about like this:

  Choice /C:D,W  Dos or Windows?
  if errorlevel 2 goto Win95
  call MousLoad.bat
  lock C:
  goto QUIT
  :Win95
  echo Type WIN to start Windows
  :QUIT

That way I'm not burdening Windows 95 with any trammels it might not want.

Step Number 9:

  I haven't done this yet.  When a .BAT file runs a program under it it holds onto 
about 40K of memory of its own as overhead.  It does this because it clones a new 
session of DOS to run the daughter program.  Sometimes the daughter program did not 
have all the memory it wanted.   I haven't tested whether Windows senses this and 
retires that or whether I'm clogging the 640K.  As I said above, I wanted Windows 
95 to start untrammeled.  So I might go the further step of automating it by changing 
the line above:

    echo Type Win to start Windows

to just
    
     win
    
which would run Windows 95.  





On Sunday, November 10, 2002 at 7:42 pm, Spinor Ezekiel wrote: > >try doing this;) > >http://www.siroccostation.com/memxp.html

[Reply or follow-up to this message]

re: Question about 'My extra-cool DOS game won't run under Windows'
Monday, July 28, 2003 at 3:48 pm
Posted by dhm (966 messages posted)

Uh, here I'm replying to myself because on Saturday afternoon  My Extra Cool (well, 
nostalgically beloved) DOS Game Stopped Running Under Windows 95.

The trouble is that my sister sent me a better video card and I installed it in the 
afternoon.  It was the 1995 release and its driver had bugs.  It's a Creative Labs 
Blaster Banshee.  The original writer didn't specify what he meant by "doesn't run" 
and I jumped to conclusions.  

I am correcting my problem by getting Creative Labs 1999 update for the driver.  
Probably other people complained that it often made the DOS screen go black on black.




On Saturday, July 26, 2003 at 9:40 am, Daniel wrote:
>I have a lot of DOS stuff that is important to me.
>
>Step number 1
>
>  Click on Run and Enter:
>
>     attrib c:\msdos.sys -s -h -r
>
>  That changes it from a hidden, read-only, system file into an ordinary file.


[Reply or follow-up to this message]

Tip: Use one of the [Reply or follow-up to this message] links above to add a message to this thread
Return to the Windows 95 Discussion Forum

All content at Annoyances.org is Copyright © 1995-2008 Creative Elementtm All rights reserved.
Please do not plagiarize; redistributing these pages without permission is strictly prohibited.