Format
Formats the disk in the specified volume to accept Windows files.
Syntax
formatVolume [/v:Label] [/q] [/f:Size]
formatVolume [/v:Label] [/q] [/t:Tracks/n:Sectors]
formatVolume [/v:Label] [/q]
formatVolume [/q]
Parameters
Remarks
-
Using format at the Recovery Console
The format command, with different parameters, is available from the Recovery Console.
- Administrative credentials
You must be a member of the Administrators group to format a hard drive.
-
Using format
The format command creates a new root directory and file system for the disk. It can also check for bad areas on the disk, and it can delete all data on the disk. To be able to use a new disk, you must first use this command to format the disk.
- Typing a volume label
After formatting a floppy disk, format displays the following message:
Volume label (11 characters, ENTER for none)?
The volume label can be a maximum of 11 characters (including spaces). If you do not want your disk to have a volume label, just press ENTER. For information about volume labels, see Related Topics.
- Formatting a hard disk
When you use the format command to format a hard disk, format displays a message of the following form before attempting to format the hard disk:
WARNING, ALL DATA ON NON-REMOVABLE DISK DRIVE x: WILL BE LOST! Proceed with Format (Y/N)? _
To format the hard disk, press Y; if you do not want to format the disk, press N. You must have Administrator rights to format a hard disk.
- Unit size
FAT file systems restrict the number of clusters to no more than 65526. FAT32 file systems restrict the number of clusters to between 65527 and 4177917.
NTFS compression is not supported for allocation unit sizes above 4096.
-
Format messages
When formatting is complete, format displays messages showing the total disk space, any space marked as defective, and the space available for your files.
- Quick formatting
You can speed up the formatting process by using the /q command-line option. Use this command-line option only if there are no bad sectors on your hard disk.
- Using format with a reassigned drive or a network drive
You should not use the format command on a drive prepared by using the subst command. You cannot format disks over a network.
-
Format exit codes
The following table lists each exit code and a brief description of its meaning.
Exit code Description 0 The format operation was successful. 1 Incorrect parameters were supplied. 4 A fatal error occurred (any error other than 0, 1, or 5). 5 The user pressed N in response to the prompt "Proceed with Format (Y/N)?" to stop the process. You can check these exit codes by using the errorlevel condition with the if batch command.
Examples
format a:
To perform a quick format operation on a previously formatted disk in drive A, type:
format a: /q
To format a floppy disk in drive A and assign it the volume label "DATA," type:
format a: /v:DATA
Formatting legend
Format | Meaning |
Italic | Information that the user must supply |
Bold | Elements that the user must type exactly as shown |
Ellipsis (...) | Parameter that can be repeated several times in a command line |
Between brackets ([]) | Optional items |
Between braces ({}); choices separated by pipe (|). Example: {even|odd} | Set of choices from which the user must choose only one |
Courier font | Code or program output |