Shine Tutorial    
  shinetutorialtopsideimage
HOME DOS OS C,C++ HTML CSS XML JAVA ASP PHP SQL OFFICE MULTIMEDIA MORE... CERTIFICATION ABOUT
 
S T ADVT
TUTORIALS
 

MS - DOS Command

« Previous Next Chapter »

Microsoft DOS expand command

Quick links

About expand
Availability
Early expand command syntax
Recent expand command syntax
Repair expand command syntax
Recovery console expand syntax
Examples

About expand

The expand command is use to take a compressed Windows file and "expand" it to its original format.

Availability

The expand command is an external command and is available in the below Microsoft operating systems.

MS-DOS 6.0 and above
Windows 2000
Windows XP
Windows Vista
Windows 7

Early expand command syntax

Microsoft (R) File Expansion Utility Version 2.00
Copyright (C) Microsoft Corp 1990-1991. All rights reserved.

Expands one or more compressed files.

EXPAND [-r] Source Destination
EXPAND -r Source [Destination]
-r Automatically rename expanded files. Only valid for files compressed with -r switch.
Source Source file specification. Source may be multiple file specifications. Wildcards may be used.
Destination Destination file and path specification. Destination may be a directory. If Source is multiple files and -r is not specified, Destination must be a directory. Wildcards may not be used.

Recent expand command syntax

Microsoft (R) File Expansion Utility Version 5.00.2134.1
Copyright (C) Microsoft Corp 1990-1999. All rights reserved.

Expands one or more compressed files.

EXPAND [-r] Source Destination
EXPAND -r Source [Destination]
EXPAND -D Source.cab [-F:Files]
EXPAND Source.cab -F:Files Destination
-r Rename expanded files.
-D Display list of files in source.
Source Source file specification. Wildcards may be used.
-F:Files Name of files to expand from a .CAB.
Destination Destination file | path specification.
Destination may be a directory.
If Source is multiple files and -r is not specified, Destination must be a directory.

Recovery console expand command syntax

Expands a compressed file.

EXPAND source [/F:filespec] [destination] [/Y]
EXPAND source [/F:filespec] /D

source Specifies the file to be expanded. May not include wildcard (* and ?) characters.
Destination Specifies the directory for the new file. The default is the current directory.
/y Do not prompt before overwriting an existing file.
/f:filespec If the source contains more than one file, this parameter is required to identify the< specific file(s) to be expanded. May include wildcards.
/d Do not expand; only display a directory of the files that are contained in the source.

The destination might be any directory within the system directories of the current Windows installation, the root of any drive, the local installation sources, or the Cmdcons directory. The destination cannot be removable media. The destination file cannot be read-only. Use the attrib command to remove the read-only attribute. Expand prompts if the destination file already exists unless /Y is used.

Repair expand command syntax

Expands a compressed file.

EXPAND source [/F:filespec] [destination] [/Y]
EXPAND source [/F:filespec] /D

source Specifies the file to be expanded. May not include wildcards.
destination Specifies the directory for the new file. Default is the current directory.
/Y Do not prompt before overwriting an existing file.
/F:filespec If the source contains more than one file, this parameter is required to identify the specific file(s) to be expanded. May include wildcards.
/D Do not expand; only display a directory of the files that are contained in the source.

The destination may be any directory within the system directories of the current Windows installation, the root of any drive, the local installation sources, or the cmdcons directory.

The destination cannot be removable media.

The destination file cannot be read-only. Use the ATTRIB command to remove the read-only attribute.

EXPAND prompts if the destination file already exist unless /Y is used.

Examples

Expand d:\i386\hal.dl_ c:\windows\system32\hall.dll

Would expand the compressed version of the hall.dll file to the proper directory on the computer. All compressed files will end with an underscore. Therefore any windows file you're attempting to replace can be substituted in the above example.


« Previous Next Chapter »