A Windows 98 & ME forum. Win98banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Win98banter forum » Windows 98 » Improving Performance
Site Map Home Authors List Search Today's Posts Mark Forums Read Web Partners

Path in Autoexec.bat



 
 
Thread Tools Display Modes
  #11  
Old November 26th 04, 11:15 PM posted to microsoft.public.win98.performance
Buffalo
External Usenet User
 
Posts: 182
Default Path in Autoexec.bat


"FACE" wrote in message
...
On Fri, 26 Nov 2004 20:49:03 GMT, "Buffalo"
in microsoft.public.win98.performance wrote:


"Bert Kinney" wrote in message
...
Hi Buffalo,

Remove the two " in the path statement.

--
Regards,
Bert Kinney [MS-MVP DTS]
http://dts-l.org/

"Buffalo" wrote
My path command is:
SET PATH=C:\WINDOWS;C:\WINDOWS\COMMAND;"C:\Program Files\Norton
SystemWorks\Norton Ghost\";C:\PROGRA~1\ATITEC~1\ATICON~1
and it causes an error : Too many parameters.
How can I modify it so that the Ghost portion is loaded and also the ATI
Control
Panel?
Thanks


Would I also have to change C:\Program Files\Norton SystemWorks\Norton

Ghost\
to
C:\Progra~1\Norton~1\Norton~1\Norton~1 because Norton Ghost is the second

Norton
folder under the Norton SystemWorks Directory?
Just curious because I thought that if a name was over 8 characters in DOS,

you
needed to encase it in quotation marks.
Thanks for the reply to my original question.


This is an interesting one. It certainly threw me a first. Remember that
the SET command creates system literals. I don't know if I can verbalize
it, but instead of handling an argument from the command line to a program,
the system is directly handling a literal value. I don't know if that is
even in the ballpark but I would appreciate commentary on the
accuracy/inaccuracy of my comment.


FACE


Don't know.
I just changed my config.sys to put the DOS=HIGH,UMB second in line instead of
third.
DEVICE=C:\WINDOWS\HIMEM.SYS
DOS=HIGH,UMB
DEVICE=C:\WINDOWS\EMM386.EXE NOEMS
(PS: I also just added NOEMS to that line;ie: before it just read
DEVICE=C:\WINDOWS\EMM386.EXE)

I also changed the :
DEVICE=C:\CDROM\CDTECH.SYS /D:MSCD001 /UDMA2 /V to load high as I had it set to
load high in autoexec.bat so that it would match up (LH
C:\WINDOWS\COMMAND\MSCDEX.EXE /D:MSCD001 /M:10)DEVICEHIGH=C:\CDROM\CDTECH.SYS
/D:MSCD001 /UDMA2 /V
and now I no longer receive the 'too many parameters' error.

I don't know which one did the trick, but perhaps later, I will undo one change
at a time to see if I can recreate the problem.


  #12  
Old November 27th 04, 01:40 AM
FACE
external usenet poster
 
Posts: n/a
Default

On Fri, 26 Nov 2004 23:15:06 GMT, "Buffalo"
in microsoft.public.win98.performance wrote:


"FACE" wrote in message
.. .
On Fri, 26 Nov 2004 20:49:03 GMT, "Buffalo"
in microsoft.public.win98.performance wrote:


"Bert Kinney" wrote in message
...
Hi Buffalo,

Remove the two " in the path statement.

--
Regards,
Bert Kinney [MS-MVP DTS]
http://dts-l.org/

"Buffalo" wrote
My path command is:
SET PATH=C:\WINDOWS;C:\WINDOWS\COMMAND;"C:\Program Files\Norton
SystemWorks\Norton Ghost\";C:\PROGRA~1\ATITEC~1\ATICON~1
and it causes an error : Too many parameters.
How can I modify it so that the Ghost portion is loaded and also the ATI
Control
Panel?
Thanks

Would I also have to change C:\Program Files\Norton SystemWorks\Norton

Ghost\
to
C:\Progra~1\Norton~1\Norton~1\Norton~1 because Norton Ghost is the second

Norton
folder under the Norton SystemWorks Directory?
Just curious because I thought that if a name was over 8 characters in DOS,

you
needed to encase it in quotation marks.
Thanks for the reply to my original question.


This is an interesting one. It certainly threw me a first. Remember that
the SET command creates system literals. I don't know if I can verbalize
it, but instead of handling an argument from the command line to a program,
the system is directly handling a literal value. I don't know if that is
even in the ballpark but I would appreciate commentary on the
accuracy/inaccuracy of my comment.


FACE


Don't know.
I just changed my config.sys to put the DOS=HIGH,UMB second in line instead of
third.
DEVICE=C:\WINDOWS\HIMEM.SYS
DOS=HIGH,UMB
DEVICE=C:\WINDOWS\EMM386.EXE NOEMS
(PS: I also just added NOEMS to that line;ie: before it just read
DEVICE=C:\WINDOWS\EMM386.EXE)

I also changed the :
DEVICE=C:\CDROM\CDTECH.SYS /D:MSCD001 /UDMA2 /V to load high as I had it set to
load high in autoexec.bat so that it would match up (LH
C:\WINDOWS\COMMAND\MSCDEX.EXE /D:MSCD001 /M:10)DEVICEHIGH=C:\CDROM\CDTECH.SYS
/D:MSCD001 /UDMA2 /V
and now I no longer receive the 'too many parameters' error.

I don't know which one did the trick, but perhaps later, I will undo one change
at a time to see if I can recreate the problem.


:-) If you go into DOS and find that your PATH is truncated, go to a
second line and set up the first argument past the function PATH as a
variable named PATH, as in: PATH %PATH%;
The semi-colon following the variable is a necessary part of it.

If you need a particularly large path, I understand that it can be set up in
config.sys for some 1/2k though I have never done that.

Good to see that you are using your upper memory blocks.

FACE

Bill says that 640K ought to be enough for anybody.
  #13  
Old November 27th 04, 01:40 AM posted to microsoft.public.win98.performance
FACE
External Usenet User
 
Posts: 90
Default Path in Autoexec.bat

On Fri, 26 Nov 2004 23:15:06 GMT, "Buffalo"
in microsoft.public.win98.performance wrote:


"FACE" wrote in message
.. .
On Fri, 26 Nov 2004 20:49:03 GMT, "Buffalo"
in microsoft.public.win98.performance wrote:


"Bert Kinney" wrote in message
...
Hi Buffalo,

Remove the two " in the path statement.

--
Regards,
Bert Kinney [MS-MVP DTS]
http://dts-l.org/

"Buffalo" wrote
My path command is:
SET PATH=C:\WINDOWS;C:\WINDOWS\COMMAND;"C:\Program Files\Norton
SystemWorks\Norton Ghost\";C:\PROGRA~1\ATITEC~1\ATICON~1
and it causes an error : Too many parameters.
How can I modify it so that the Ghost portion is loaded and also the ATI
Control
Panel?
Thanks

Would I also have to change C:\Program Files\Norton SystemWorks\Norton

Ghost\
to
C:\Progra~1\Norton~1\Norton~1\Norton~1 because Norton Ghost is the second

Norton
folder under the Norton SystemWorks Directory?
Just curious because I thought that if a name was over 8 characters in DOS,

you
needed to encase it in quotation marks.
Thanks for the reply to my original question.


This is an interesting one. It certainly threw me a first. Remember that
the SET command creates system literals. I don't know if I can verbalize
it, but instead of handling an argument from the command line to a program,
the system is directly handling a literal value. I don't know if that is
even in the ballpark but I would appreciate commentary on the
accuracy/inaccuracy of my comment.


FACE


Don't know.
I just changed my config.sys to put the DOS=HIGH,UMB second in line instead of
third.
DEVICE=C:\WINDOWS\HIMEM.SYS
DOS=HIGH,UMB
DEVICE=C:\WINDOWS\EMM386.EXE NOEMS
(PS: I also just added NOEMS to that line;ie: before it just read
DEVICE=C:\WINDOWS\EMM386.EXE)

I also changed the :
DEVICE=C:\CDROM\CDTECH.SYS /D:MSCD001 /UDMA2 /V to load high as I had it set to
load high in autoexec.bat so that it would match up (LH
C:\WINDOWS\COMMAND\MSCDEX.EXE /D:MSCD001 /M:10)DEVICEHIGH=C:\CDROM\CDTECH.SYS
/D:MSCD001 /UDMA2 /V
and now I no longer receive the 'too many parameters' error.

I don't know which one did the trick, but perhaps later, I will undo one change
at a time to see if I can recreate the problem.


:-) If you go into DOS and find that your PATH is truncated, go to a
second line and set up the first argument past the function PATH as a
variable named PATH, as in: PATH %PATH%;
The semi-colon following the variable is a necessary part of it.

If you need a particularly large path, I understand that it can be set up in
config.sys for some 1/2k though I have never done that.

Good to see that you are using your upper memory blocks.

FACE

Bill says that 640K ought to be enough for anybody.
  #14  
Old November 27th 04, 03:05 AM
glee
external usenet poster
 
Posts: n/a
Default

Why are you loading DOS drivers for the CD-ROM drive, for use in Windows? Unless
your CD-ROM drive is ancient, you should let Windows load its protected mode driver.
Loading real mode drivers is likely putting the CD drive in DOS compatibility mode,
reducing its performance in Windows.
--
Glen Ventura, MS MVP W95/98 Systems
http://dts-l.org/goodpost.htm


"Buffalo" wrote in message
news:_NOpd.101874$5K2.40932@attbi_s03...

"FACE" wrote in message
...
On Fri, 26 Nov 2004 20:49:03 GMT, "Buffalo"
in microsoft.public.win98.performance wrote:


"Bert Kinney" wrote in message
...
Hi Buffalo,

Remove the two " in the path statement.

--
Regards,
Bert Kinney [MS-MVP DTS]
http://dts-l.org/

"Buffalo" wrote
My path command is:
SET PATH=C:\WINDOWS;C:\WINDOWS\COMMAND;"C:\Program Files\Norton
SystemWorks\Norton Ghost\";C:\PROGRA~1\ATITEC~1\ATICON~1
and it causes an error : Too many parameters.
How can I modify it so that the Ghost portion is loaded and also the ATI
Control
Panel?
Thanks

Would I also have to change C:\Program Files\Norton SystemWorks\Norton

Ghost\
to
C:\Progra~1\Norton~1\Norton~1\Norton~1 because Norton Ghost is the second

Norton
folder under the Norton SystemWorks Directory?
Just curious because I thought that if a name was over 8 characters in DOS,

you
needed to encase it in quotation marks.
Thanks for the reply to my original question.


This is an interesting one. It certainly threw me a first. Remember that
the SET command creates system literals. I don't know if I can verbalize
it, but instead of handling an argument from the command line to a program,
the system is directly handling a literal value. I don't know if that is
even in the ballpark but I would appreciate commentary on the
accuracy/inaccuracy of my comment.


FACE


Don't know.
I just changed my config.sys to put the DOS=HIGH,UMB second in line instead of
third.
DEVICE=C:\WINDOWS\HIMEM.SYS
DOS=HIGH,UMB
DEVICE=C:\WINDOWS\EMM386.EXE NOEMS
(PS: I also just added NOEMS to that line;ie: before it just read
DEVICE=C:\WINDOWS\EMM386.EXE)

I also changed the :
DEVICE=C:\CDROM\CDTECH.SYS /D:MSCD001 /UDMA2 /V to load high as I had it set to
load high in autoexec.bat so that it would match up (LH
C:\WINDOWS\COMMAND\MSCDEX.EXE /D:MSCD001 /M:10)DEVICEHIGH=C:\CDROM\CDTECH.SYS
/D:MSCD001 /UDMA2 /V
and now I no longer receive the 'too many parameters' error.

I don't know which one did the trick, but perhaps later, I will undo one change
at a time to see if I can recreate the problem.



  #15  
Old November 27th 04, 03:05 AM posted to microsoft.public.win98.performance
glee
External Usenet User
 
Posts: 2,458
Default Path in Autoexec.bat

Why are you loading DOS drivers for the CD-ROM drive, for use in Windows? Unless
your CD-ROM drive is ancient, you should let Windows load its protected mode driver.
Loading real mode drivers is likely putting the CD drive in DOS compatibility mode,
reducing its performance in Windows.
--
Glen Ventura, MS MVP W95/98 Systems
http://dts-l.org/goodpost.htm


"Buffalo" wrote in message
news:_NOpd.101874$5K2.40932@attbi_s03...

"FACE" wrote in message
...
On Fri, 26 Nov 2004 20:49:03 GMT, "Buffalo"
in microsoft.public.win98.performance wrote:


"Bert Kinney" wrote in message
...
Hi Buffalo,

Remove the two " in the path statement.

--
Regards,
Bert Kinney [MS-MVP DTS]
http://dts-l.org/

"Buffalo" wrote
My path command is:
SET PATH=C:\WINDOWS;C:\WINDOWS\COMMAND;"C:\Program Files\Norton
SystemWorks\Norton Ghost\";C:\PROGRA~1\ATITEC~1\ATICON~1
and it causes an error : Too many parameters.
How can I modify it so that the Ghost portion is loaded and also the ATI
Control
Panel?
Thanks

Would I also have to change C:\Program Files\Norton SystemWorks\Norton

Ghost\
to
C:\Progra~1\Norton~1\Norton~1\Norton~1 because Norton Ghost is the second

Norton
folder under the Norton SystemWorks Directory?
Just curious because I thought that if a name was over 8 characters in DOS,

you
needed to encase it in quotation marks.
Thanks for the reply to my original question.


This is an interesting one. It certainly threw me a first. Remember that
the SET command creates system literals. I don't know if I can verbalize
it, but instead of handling an argument from the command line to a program,
the system is directly handling a literal value. I don't know if that is
even in the ballpark but I would appreciate commentary on the
accuracy/inaccuracy of my comment.


FACE


Don't know.
I just changed my config.sys to put the DOS=HIGH,UMB second in line instead of
third.
DEVICE=C:\WINDOWS\HIMEM.SYS
DOS=HIGH,UMB
DEVICE=C:\WINDOWS\EMM386.EXE NOEMS
(PS: I also just added NOEMS to that line;ie: before it just read
DEVICE=C:\WINDOWS\EMM386.EXE)

I also changed the :
DEVICE=C:\CDROM\CDTECH.SYS /D:MSCD001 /UDMA2 /V to load high as I had it set to
load high in autoexec.bat so that it would match up (LH
C:\WINDOWS\COMMAND\MSCDEX.EXE /D:MSCD001 /M:10)DEVICEHIGH=C:\CDROM\CDTECH.SYS
/D:MSCD001 /UDMA2 /V
and now I no longer receive the 'too many parameters' error.

I don't know which one did the trick, but perhaps later, I will undo one change
at a time to see if I can recreate the problem.



  #16  
Old November 27th 04, 03:32 AM
SFB - KB3MM
external usenet poster
 
Posts: n/a
Default


"FACE" wrote in message
...
On Fri, 26 Nov 2004 23:15:06 GMT, "Buffalo"


in microsoft.public.win98.performance wrote:


"FACE" wrote in message
.. .
On Fri, 26 Nov 2004 20:49:03 GMT, "Buffalo"


in microsoft.public.win98.performance wrote:


"Bert Kinney" wrote in message
...
Hi Buffalo,

Remove the two " in the path statement.

--
Regards,
Bert Kinney [MS-MVP DTS]
http://dts-l.org/

"Buffalo" wrote
My path command is:
SET PATH=C:\WINDOWS;C:\WINDOWS\COMMAND;"C:\Program Files\Norton
SystemWorks\Norton Ghost\";C:\PROGRA~1\ATITEC~1\ATICON~1
and it causes an error : Too many parameters.
How can I modify it so that the Ghost portion is loaded and also

the ATI
Control
Panel?
Thanks

Would I also have to change C:\Program Files\Norton

SystemWorks\Norton
Ghost\
to
C:\Progra~1\Norton~1\Norton~1\Norton~1 because Norton Ghost is the

second
Norton
folder under the Norton SystemWorks Directory?
Just curious because I thought that if a name was over 8 characters in

DOS,
you
needed to encase it in quotation marks.
Thanks for the reply to my original question.


This is an interesting one. It certainly threw me a first. Remember

that
the SET command creates system literals. I don't know if I can

verbalize
it, but instead of handling an argument from the command line to a

program,
the system is directly handling a literal value. I don't know if that

is
even in the ballpark but I would appreciate commentary on the
accuracy/inaccuracy of my comment.


FACE


Don't know.
I just changed my config.sys to put the DOS=HIGH,UMB second in line

instead of
third.
DEVICE=C:\WINDOWS\HIMEM.SYS
DOS=HIGH,UMB
DEVICE=C:\WINDOWS\EMM386.EXE NOEMS
(PS: I also just added NOEMS to that line;ie: before it just read
DEVICE=C:\WINDOWS\EMM386.EXE)

I also changed the :
DEVICE=C:\CDROM\CDTECH.SYS /D:MSCD001 /UDMA2 /V to load high as I had it

set to
load high in autoexec.bat so that it would match up (LH
C:\WINDOWS\COMMAND\MSCDEX.EXE /D:MSCD001

/M:10)DEVICEHIGH=C:\CDROM\CDTECH.SYS
/D:MSCD001 /UDMA2 /V
and now I no longer receive the 'too many parameters' error.

I don't know which one did the trick, but perhaps later, I will undo one

change
at a time to see if I can recreate the problem.


:-) If you go into DOS and find that your PATH is truncated, go to a
second line and set up the first argument past the function PATH as a
variable named PATH, as in: PATH %PATH%;
The semi-colon following the variable is a necessary part of it.

If you need a particularly large path, I understand that it can be set up

in
config.sys for some 1/2k though I have never done that.

Good to see that you are using your upper memory blocks.

FACE

Bill says that 640K ought to be enough for anybody.


  #17  
Old November 27th 04, 03:32 AM posted to microsoft.public.win98.performance
SFB - KB3MM
external usenet poster
 
Posts: 129
Default Path in Autoexec.bat


"FACE" wrote in message
...
On Fri, 26 Nov 2004 23:15:06 GMT, "Buffalo"


in microsoft.public.win98.performance wrote:


"FACE" wrote in message
.. .
On Fri, 26 Nov 2004 20:49:03 GMT, "Buffalo"


in microsoft.public.win98.performance wrote:


"Bert Kinney" wrote in message
...
Hi Buffalo,

Remove the two " in the path statement.

--
Regards,
Bert Kinney [MS-MVP DTS]
http://dts-l.org/

"Buffalo" wrote
My path command is:
SET PATH=C:\WINDOWS;C:\WINDOWS\COMMAND;"C:\Program Files\Norton
SystemWorks\Norton Ghost\";C:\PROGRA~1\ATITEC~1\ATICON~1
and it causes an error : Too many parameters.
How can I modify it so that the Ghost portion is loaded and also

the ATI
Control
Panel?
Thanks

Would I also have to change C:\Program Files\Norton

SystemWorks\Norton
Ghost\
to
C:\Progra~1\Norton~1\Norton~1\Norton~1 because Norton Ghost is the

second
Norton
folder under the Norton SystemWorks Directory?
Just curious because I thought that if a name was over 8 characters in

DOS,
you
needed to encase it in quotation marks.
Thanks for the reply to my original question.


This is an interesting one. It certainly threw me a first. Remember

that
the SET command creates system literals. I don't know if I can

verbalize
it, but instead of handling an argument from the command line to a

program,
the system is directly handling a literal value. I don't know if that

is
even in the ballpark but I would appreciate commentary on the
accuracy/inaccuracy of my comment.


FACE


Don't know.
I just changed my config.sys to put the DOS=HIGH,UMB second in line

instead of
third.
DEVICE=C:\WINDOWS\HIMEM.SYS
DOS=HIGH,UMB
DEVICE=C:\WINDOWS\EMM386.EXE NOEMS
(PS: I also just added NOEMS to that line;ie: before it just read
DEVICE=C:\WINDOWS\EMM386.EXE)

I also changed the :
DEVICE=C:\CDROM\CDTECH.SYS /D:MSCD001 /UDMA2 /V to load high as I had it

set to
load high in autoexec.bat so that it would match up (LH
C:\WINDOWS\COMMAND\MSCDEX.EXE /D:MSCD001

/M:10)DEVICEHIGH=C:\CDROM\CDTECH.SYS
/D:MSCD001 /UDMA2 /V
and now I no longer receive the 'too many parameters' error.

I don't know which one did the trick, but perhaps later, I will undo one

change
at a time to see if I can recreate the problem.


:-) If you go into DOS and find that your PATH is truncated, go to a
second line and set up the first argument past the function PATH as a
variable named PATH, as in: PATH %PATH%;
The semi-colon following the variable is a necessary part of it.

If you need a particularly large path, I understand that it can be set up

in
config.sys for some 1/2k though I have never done that.

Good to see that you are using your upper memory blocks.

FACE

Bill says that 640K ought to be enough for anybody.


  #18  
Old November 27th 04, 03:36 AM
SFB - KB3MM
external usenet poster
 
Posts: n/a
Default


"FACE" wrote in message
...
On Fri, 26 Nov 2004 20:49:03 GMT, "Buffalo"


in microsoft.public.win98.performance wrote:


"Bert Kinney" wrote in message
...
Hi Buffalo,

Remove the two " in the path statement.

--
Regards,
Bert Kinney [MS-MVP DTS]
http://dts-l.org/

"Buffalo" wrote
My path command is:
SET PATH=C:\WINDOWS;C:\WINDOWS\COMMAND;"C:\Program Files\Norton
SystemWorks\Norton Ghost\";C:\PROGRA~1\ATITEC~1\ATICON~1
and it causes an error : Too many parameters.
How can I modify it so that the Ghost portion is loaded and also the

ATI
Control
Panel?
Thanks


Would I also have to change C:\Program Files\Norton SystemWorks\Norton

Ghost\
to
C:\Progra~1\Norton~1\Norton~1\Norton~1 because Norton Ghost is the second

Norton
folder under the Norton SystemWorks Directory?
Just curious because I thought that if a name was over 8 characters in

DOS, you
needed to encase it in quotation marks.
Thanks for the reply to my original question.


This is an interesting one. It certainly threw me a first. Remember that
the SET command creates system literals.


Wouldn't call them that. They are not like the transparent DEC Symbols used
by VMS.

I don't know if I can verbalize
it, but instead of handling an argument from the command line to a

program,
the system is directly handling a literal value. I don't know if that is
even in the ballpark but I would appreciate commentary on the
accuracy/inaccuracy of my comment.


The SET command simply stores the text string in the environment and
associates the label with it. The program MUST explicitly ask the system
to get the value.



FACE


  #19  
Old November 27th 04, 03:36 AM posted to microsoft.public.win98.performance
SFB - KB3MM
external usenet poster
 
Posts: 129
Default Path in Autoexec.bat


"FACE" wrote in message
...
On Fri, 26 Nov 2004 20:49:03 GMT, "Buffalo"


in microsoft.public.win98.performance wrote:


"Bert Kinney" wrote in message
...
Hi Buffalo,

Remove the two " in the path statement.

--
Regards,
Bert Kinney [MS-MVP DTS]
http://dts-l.org/

"Buffalo" wrote
My path command is:
SET PATH=C:\WINDOWS;C:\WINDOWS\COMMAND;"C:\Program Files\Norton
SystemWorks\Norton Ghost\";C:\PROGRA~1\ATITEC~1\ATICON~1
and it causes an error : Too many parameters.
How can I modify it so that the Ghost portion is loaded and also the

ATI
Control
Panel?
Thanks


Would I also have to change C:\Program Files\Norton SystemWorks\Norton

Ghost\
to
C:\Progra~1\Norton~1\Norton~1\Norton~1 because Norton Ghost is the second

Norton
folder under the Norton SystemWorks Directory?
Just curious because I thought that if a name was over 8 characters in

DOS, you
needed to encase it in quotation marks.
Thanks for the reply to my original question.


This is an interesting one. It certainly threw me a first. Remember that
the SET command creates system literals.


Wouldn't call them that. They are not like the transparent DEC Symbols used
by VMS.

I don't know if I can verbalize
it, but instead of handling an argument from the command line to a

program,
the system is directly handling a literal value. I don't know if that is
even in the ballpark but I would appreciate commentary on the
accuracy/inaccuracy of my comment.


The SET command simply stores the text string in the environment and
associates the label with it. The program MUST explicitly ask the system
to get the value.



FACE


  #20  
Old November 27th 04, 06:23 PM posted to microsoft.public.win98.performance
FACE
External Usenet User
 
Posts: 90
Default Path in Autoexec.bat

I think that Buffalo was being a little TIC over it.
I know I was, besides being accurate to the best of my memory G.
Looks like we opened the door and found 1994 again.
I started to ask him if he had run memmaker first.

On the other hand, maybe he does need his CD-ROM on the DOS platform (though
I can not remember accessing it under DOS), but also, just like I wrote a
simple batch file for TRANSPARENT.EXE, sometimes old habits die hard.


FACE

On Fri, 26 Nov 2004 22:05:50 -0500, "glee" in
microsoft.public.win98.performance wrote:

Why are you loading DOS drivers for the CD-ROM drive, for use in Windows? Unless
your CD-ROM drive is ancient, you should let Windows load its protected mode driver.
Loading real mode drivers is likely putting the CD drive in DOS compatibility mode,
reducing its performance in Windows.


 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Autoexec.bat Javad General 4 November 22nd 04 11:49 PM
Autoexec.bat Dave Improving Performance 4 October 8th 04 12:30 AM
Reading Autoexec.bat Dingus Software & Applications 12 August 25th 04 08:35 PM
Major errors in config.sys & Autoexec.bat Kim Setup & Installation 4 August 2nd 04 02:23 AM
UNC Path bug ? Skybuck Flying Networking 2 June 23rd 04 10:42 AM


All times are GMT +1. The time now is 06:46 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Win98banter.
The comments are property of their posters.