The information in this article applies to:
SUMMARYYou can use an MS-DOS batch file that employs the For command to facilitate the decompression of a large number of Microsoft Word for DOS version 5.5 or 6.0 compressed files. MORE INFORMATIONThe syntax of the MS-DOS For batch command, when used in a batch file, is as follows: for %%variable in (set) do commandFor example, to run SETUP.EXE in the current directory and have it decompress all compressed files, create a batch file that contains the following command: for %%i in (c:\*.??$) do setup /d %%iWhen you run this batch file, SETUP.EXE is run with the /d switch on all files in the current directory that contain a file extension with a dollar sign ($) in the third position. For SETUP.EXE to decompress the files, the SETUP.EXE and WORD55.INF files must be located in the current directory. (SETUP.EXE, SETUP1.EXE, and WORD60.INF if you are using Word 6.0.) Reference(s): "Microsoft Word Getting Started," version 5.5, page 67 "Microsoft Quick Reference Guide to MS-DOS Commands," Van Wolverton, Microsoft Press, 1990 Additional query words: 5.50 manual setup
Keywords : kbusage |
Last Reviewed: December 20, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |