Board logo

标题: 如何使启动盘自动解压缩.CAB的文件 [打印本页]

作者: lmq     时间: 2003-11-30 00:00    标题: 如何使启动盘自动解压缩.CAB的文件
版主:
你好,我知到WIN98中使用一个EBD.CAB的压缩文件夹减少文件体积,启动后又可自由使用,我制作一个启动盘同样也想压缩一些文件,我使用的是CABMAN压缩软件,但不知如何在启动时就可自动地解压缩这些文件,并自由使用。请帮助解答。
谢谢

作者: Roy     时间: 2003-11-30 00:00
在autoexec.bat中用extract解壓吧

作者: lmq     时间: 2003-11-30 00:00
roy:
你好,请问extract是否是个程序,它的用法是怎样的

作者: Roy     时间: 2003-11-30 00:00
以下是引用lmq在2003-11-30 14:48:29的发言:
roy:
         你好,请问extract是否是个程序,它的用法是怎样的
是的,用法如下:
EXTRACT cabinet
EXTRACT source
EXTRACT /C source destination

cabinet - Cabinet file (contains two or more files).
filename - Name of the file to extract from the cabinet.
Wild cards and multiple filenames (separated by
blanks) may be used.

source - Compressed file (a cabinet with only one file).
newname - New filename to give the extracted file.
If not supplied, the original name is used.

/A Process ALL cabinets. Follows cabinet chain
starting in first cabinet mentioned.
/C Copy source file to destination (to copy from DMF disks).
/D Display cabinet directory (use with filename to avoid extract).
/E Extract (use instead of *.* to extract all files).
/L dir Location to place extracted files (default is current directory).
/Y Do not prompt before overwriting an existing file.

作者: lmq     时间: 2003-11-30 00:00
谢谢