|
zzhh612
中级用户
  
积分 278
发帖 103
注册 2006-10-21
状态 离线
|
『楼 主』:
lh是什么意思?
使用 LLM 解释/回答一下
经常看到这样的批处理语句:
lh c:\dos\doskey.com
但却不知道 前面的lh是什么意思.请个熟手解释一下好吗?
虽然问题有点菜了,可不懂不能装懂..>:
Often see such batch processing statements:
lh c:\dos\doskey.com
But don't know what the meaning of lh in front is. Please have an expert explain it, okay?
Although the question is a bit naive, I can't pretend to know if I don't understand..>:
|
|
2007-4-5 22:32 |
|
|
ccwan
金牌会员
     
积分 2725
发帖 1160
注册 2006-9-23 来自 河北廊坊
状态 离线
|
『第 2 楼』:
使用 LLM 解释/回答一下
我比你还菜,因为我都没有见过。
I'm even worse than you because I've never even seen it.
|

三人行,必有吾师焉。 学然后知不足,教然后知困,然后能自强也。 |
|
2007-4-5 22:50 |
|
|
zh159
金牌会员
     
积分 3687
发帖 1467
注册 2005-8-8
状态 离线
|
『第 3 楼』:
使用 LLM 解释/回答一下
lh 是DOS(XP的CMD无效)里面一个将程序加入高端内存的命令,从而节省基本的640k内存空间;不过此命令必须要在加载EMM386.exe、HIMEM.sys后才有效,并且不是所有程序都有效
lh is a command in DOS (CMD in XP is invalid) to add a program to the upper memory, thus saving the basic 640k memory space; however, this command is only effective after loading EMM386.exe and HIMEM.sys, and not all programs are effective
|
|
2007-4-5 23:00 |
|
|
zzhh612
中级用户
  
积分 278
发帖 103
注册 2006-10-21
状态 离线
|
『第 4 楼』:
使用 LLM 解释/回答一下
也许楼上的解释得对,我经常看见,又不理解,所以印象比较深,好比下面的,是AUTOEXEC.BAT的一段:
PATH A:\;%RAMD%\;%RAMD%\DOS;%CDROM%:\;%PATH%
XMSDSK.exe 20480 %RAMD% /y /t >NUL
SET COMSPEC=%RAMD%:\COMMAND.COM >NUL
COPY EXTRACT.EXE %RAMD%\ >NUL
COPY COMMAND.COM %RAMD%\ >NUL
EXTRACT.EXE /E /Y /L %RAMD%\TRS\TRS.CAB >NUL
LH SMARTDRV.EXE 20480 >NUL
LH CTMOUSE.EXE >NUL
LH MOUSCLIP.EXE >NUL
LH DOSKEY.COM >NUL
LH DOSLFN.COM >NUL
LH ZENO.EXE >NUL
LH KILLER.EXE >NUL
EXTRACT.EXE /E /Y /L %RAMD%\NTFS\NTFS.CAB >NUL
%RAMD%\NTFS\NTFSDOS.EXE >NUL
........
感谢楼上的回答.
Last edited by zzhh612 on 2007-4-6 at 12:14 AM ]
Maybe the explanation from the person above is right. I often see this but don't understand it, so the impression is relatively deep. For example, the following is a part of AUTOEXEC.BAT:
PATH A:\;%RAMD%\;%RAMD%\DOS;%CDROM%:\;%PATH%
XMSDSK.exe 20480 %RAMD%\ /y /t >NUL
SET COMSPEC=%RAMD%:\COMMAND.COM >NUL
COPY EXTRACT.EXE %RAMD%\ >NUL
COPY COMMAND.COM %RAMD%\ >NUL
EXTRACT.EXE /E /Y /L %RAMD%\TRS\TRS.CAB >NUL
LH SMARTDRV.EXE 20480 >NUL
LH CTMOUSE.EXE >NUL
LH MOUSCLIP.EXE >NUL
LH DOSKEY.COM >NUL
LH DOSLFN.COM >NUL
LH ZENO.EXE >NUL
LH KILLER.EXE >NUL
EXTRACT.EXE /E /Y /L %RAMD%\NTFS\NTFS.CAB >NUL
%RAMD%\NTFS\NTFSDOS.EXE >NUL
........
Thanks for the answer from the person above.
Last edited by zzhh612 on 2007-4-6 at 12:14 AM ]
|
|
2007-4-6 00:08 |
|
|
ding520
初级用户
 
积分 29
发帖 15
注册 2007-2-17
状态 离线
|
『第 5 楼』:
使用 LLM 解释/回答一下
是系统开机的时候加载 各类驱动 和程序
It is when the system boots up that it loads various drivers and programs.
|
|
2007-4-7 03:04 |
|
|
zh159
金牌会员
     
积分 3687
发帖 1467
注册 2005-8-8
状态 离线
|
『第 6 楼』:
使用 LLM 解释/回答一下
Originally posted by ding520 at 2007-4-6 14:04:
是系统开机的时候加载 各类驱动 和程序
加载各类驱动 和程序时lh不是必要的
网上找到的说明,和我 3 楼说得一样
lh/loadhigh 将程序装入高端内存
[适用场合] 这条命令一般用在autoexec.bat中,当有些软件需要的基本内存很大 时,它会有用
[用 法] lh
将程序装入高端内存 使用此命令时,config.sys文件中需有下面两
条语句。 device=emm386.exe dos=umb
Originally posted by ding520 at 2007-4-6 14:04:
It is when the system boots to load various drivers and programs.
When loading various drivers and programs, lh is not necessary.
The explanation found online is the same as what I said on the 3rd floor.
lh/loadhigh Load the program into the upper memory
This command is generally used in autoexec.bat. It will be useful when some software requires a large amount of basic memory.
lh
Load the program into the upper memory. When using this command, the following two statements need to be in the config.sys file. device=emm386.exe dos=umb
|
|
2007-4-7 05:55 |
|
|
sunfeihu
新手上路

积分 27
发帖 16
注册 2007-12-17
状态 离线
|
『第 7 楼』:
使用 LLM 解释/回答一下
lh/loadhigh 把驻留程序装入高端内存! 一般用在autoexec.bat中,当有些软件需要的常规内存很大时,我们调用它!但在用之前,config.sys配置文件中必须对上位内存umb,高端内存区hma。管理高端内存的emm386.exe程序进行加载
lh [程序] /l:区号 将程序装入指定的umb区
lh /s 一般是由memmaker专用
lh/loadhigh Load the resident program into the upper memory! Generally used in autoexec.bat. When some software requires a large amount of conventional memory, we call it! But before using it, the config.sys configuration file must manage the upper memory umb and the upper memory area hma. The emm386.exe program for managing the upper memory needs to be loaded.
lh /l:area number Load the program into the specified umb area
lh /s Generally dedicated by memmaker
|
|
2008-12-17 23:59 |
|
|
tongtong2009
初级用户
  统统一计划
积分 45
发帖 24
注册 2009-3-7 来自 中华人民共和国
状态 离线
|
『第 8 楼』:
哇
使用 LLM 解释/回答一下
好难啊。我看不懂。 我英语很差。 都不知道自己能不能学好DOS
It's really difficult. I can't understand. My English is very poor. I don't even know if I can learn DOS well.
|
|
2009-3-8 07:44 |
|