|
xu_daxian
初级用户
 
积分 179
发帖 28
注册 2004-12-20
状态 离线
|
『楼 主』:
[讨论]DOS下CAB压缩文件的制作工具及其具体使用方法!
使用 LLM 解释/回答一下
本着学习的目的,本人特此寻求诸位给予以下帮助:
1. DOS下CAB压缩文件的制作工具及其具体使用方法!
2.MSDOS7.1中是否自带解压CAB压缩文件的内部命令EXPAND或是EXTRACT?
3.命令EXT.EXE是否就是解压CAB压缩文件的工具EXTRACT,其使用方法是:EXTRACT -------还是EXT ------
For the purpose of learning, I hereby seek your help in the following:
1. Tools for creating CAB compressed files under DOS and their specific usage methods!
2. Does MSDOS7.1 come with the internal command EXPAND or EXTRACT to extract CAB compressed files?
3. Is the command EXT.EXE the tool EXTRACT for extracting CAB compressed files? What is its usage method: EXTRACT ------- or EXT ------
|
|
2004-12-22 00:00 |
|
|
JonePeng
金牌会员
      D◎$ Fαп
积分 4562
发帖 1883
注册 2004-1-19 来自 广东广州
状态 离线
|
『第 2 楼』:
使用 LLM 解释/回答一下
1. DOS下的CAB制作工具我没见过,Windows版的才有,推荐Cabinet manager;2. YES. It's EXTRACT.3. EXT不是Extract.exe,而是Extract.exe“派生”出来的工具,用来方便从Win9x/ME安装文件(*.CAB)中提取文件。EXT.exe必须依赖Extract.exe,即没有extract,EXT就无法使用。
1. I haven't seen CAB making tools under DOS; only the Windows version has them. Recommend Cabinet manager.
2. YES. It's EXTRACT.
3. EXT is not Extract.exe, but a tool "derived" from Extract.exe, used to facilitate extracting files from Win9x/ME installation files (*.CAB). EXT.exe must rely on Extract.exe, that is, without extract, EXT cannot be used.
|

----====≡≡≡≡ 我的至爱,永远是MSDOS!≡≡≡≡====----
|
|
2004-12-22 00:00 |
|
|
xu_daxian
初级用户
 
积分 179
发帖 28
注册 2004-12-20
状态 离线
|
|
2004-12-22 00:00 |
|
|
xu_daxian
初级用户
 
积分 179
发帖 28
注册 2004-12-20
状态 离线
|
『第 4 楼』:
使用 LLM 解释/回答一下
我使用了微软的IExpress制作CAB压缩文件时发现其调用了CABINET MAKE程序,该程序在WINXP中的命令窗中运行,那么请问该程序是否应该可以直接在纯DOS下运行制作CAB压缩包,如果可以,请问该如何操作!
I used Microsoft's IExpress to make a CAB compressed file and found that it called the CABINET MAKE program. This program runs in the command window of WINXP. Then, does this program should be able to run directly under pure DOS to make a CAB compressed package? If yes, please tell me how to operate!
|
|
2004-12-22 00:00 |
|
|
chujiafu
银牌会员
    
积分 1339
发帖 595
注册 2004-5-26 来自 安徽 宿州
状态 离线
|
『第 5 楼』:
使用 LLM 解释/回答一下
我也未发现Dos版的Cab的制作工具。我用的是CabManager,它制成的Cab 能用微软的Extract打开。
I also didn't find a Cab creation tool for the DOS version. I'm using CabManager, and the Cabs it creates can be opened with Microsoft's Extract.
|
|
2004-12-23 00:00 |
|
|
Climbing
铂金会员
       网络独行侠
积分 6962
发帖 2753
注册 2003-4-16 来自 河北保定
状态 离线
|
『第 6 楼』:
使用 LLM 解释/回答一下
Bart Lagerweij使用微软提供的cabarc.exe来制做cab文件,这个程序是命令行方式的程序,应该可以运行在纯DOS环境下。下面是Bart写的用来制做cab文件的批处理,从里面可以找到这个程序的下载地址:
@echo off
if not exist cabarc.exe goto _nocab
if "%1" == "" goto _usage
if exist source\%1\nul goto _dirok
echo MAKE: Directory "source\%1" does not exist...
goto _abort
:_dirok
cabarc -m LZX:21 -p -r -P source\%1\ n cabs\%1.cab source\%1\*.*
if errorlevel 1 goto _abort
echo.
echo MAKE: Module "%1" created. File is "cabs\%1.cab"
goto _end
:_nocab
echo.
echo MAKE: Cannot find needed file "cabarc.exe"
echo MAKE: You can extract it from
echo http://msdn.microsoft.com/library/en-us/dnsamples/cab-sdk.exe
goto _abort
:_usage
echo.
echo MAKE.BAT is used to quickly build a modboot module (.cab file)
echo.
echo Usage: make name
echo.
echo name: the name to build (should exist as directory in source)
echo.
goto _end
:_abort
echo.
echo Aborted...
pause
:_end
Bart Lagerweij uses the cabarc.exe provided by Microsoft to create cab files. This program is a command-line program and should be able to run in a pure DOS environment. The following is the batch script written by Bart for creating cab files, from which you can find the download address of this program:
@echo off
if not exist cabarc.exe goto _nocab
if "%1" == "" goto _usage
if exist source\%1\nul goto _dirok
echo MAKE: Directory "source\%1" does not exist...
goto _abort
:_dirok
cabarc -m LZX:21 -p -r -P source\%1\ n cabs\%1.cab source\%1\*.*
if errorlevel 1 goto _abort
echo.
echo MAKE: Module "%1" created. File is "cabs\%1.cab"
goto _end
:_nocab
echo.
echo MAKE: Cannot find needed file "cabarc.exe"
echo MAKE: You can extract it from
echo http://msdn.microsoft.com/library/en-us/dnsamples/cab-sdk.exe
goto _abort
:_usage
echo.
echo MAKE.BAT is used to quickly build a modboot module (.cab file)
echo.
echo Usage: make name
echo.
echo name: the name to build (should exist as directory in source)
echo.
goto _end
:_abort
echo.
echo Aborted...
pause
:_end
|

偶只喜欢回答那些标题和描述都很清晰的帖子!
如想解决问题,请认真学习“这个帖子”和“这个帖子”并努力遵守,如果可能,请告诉更多的人!
|
|
2004-12-24 00:00 |
|
|
xu_daxian
初级用户
 
积分 179
发帖 28
注册 2004-12-20
状态 离线
|
『第 7 楼』:
使用 LLM 解释/回答一下
感谢Climbing的帮助,偶已经在微软找到并已下载,不过全是E文.特此将下载键连提供给有兴趣者,共同研究.希望高手能将其汉化!
http://download.microsoft.com/download/platformsdk/cab/2.0/w98nt42kmexp/en-us/Cabsdk.exe
Thanks to Climbing's help, I have found and downloaded it in Microsoft, but it's all in English.特此 provide the download link to those who are interested for joint research. Hope experts can localize it into Chinese!
http://download.microsoft.com/download/platformsdk/cab/2.0/w98nt42kmexp/en-us/Cabsdk.exe
|
|
2004-12-24 00:00 |
|
|
Climbing
铂金会员
       网络独行侠
积分 6962
发帖 2753
注册 2003-4-16 来自 河北保定
状态 离线
|
『第 8 楼』:
使用 LLM 解释/回答一下
有必要汉化吗?我认为如果一个人觉得离开汉字环境就无法搞计算机的话,那么干脆就不要搞计算机了。
Is it necessary to localize into Chinese? I think if someone thinks they can't do computer work without a Chinese character environment, then they might as well not do computer work.
|

偶只喜欢回答那些标题和描述都很清晰的帖子!
如想解决问题,请认真学习“这个帖子”和“这个帖子”并努力遵守,如果可能,请告诉更多的人!
|
|
2004-12-27 00:00 |
|
|
xu_daxian
初级用户
 
积分 179
发帖 28
注册 2004-12-20
状态 离线
|
『第 9 楼』:
使用 LLM 解释/回答一下
其实汉不汉化也没有干系的,因为输入时总是输入E文.只是在运行过程中看到自己的母语心中总有一种亲切感.
Actually, it doesn't matter whether it's Chinese-ized or not, because when entering, it's always entering English. It's just that when running, seeing one's own mother tongue always brings a sense of intimacy.
|
|
2004-12-27 00:00 |
|