Remember to maintain security and privacy. Do not share sensitive information. Procedimento.com.br may make mistakes. Verify important information. Termo de Responsabilidade
Formatting a drive in Windows is a common task that can be accomplished using the Command Prompt (CMD). This process is useful for preparing a new drive for use or erasing all data from an existing drive to start fresh. Below, we'll guide you through the steps to format a drive using CMD, including practical examples and commands.
Examples:
Open Command Prompt as Administrator:
Windows + S
to open the search bar, type cmd
, and then right-click on "Command Prompt" and select "Run as administrator."List Available Drives:
diskpart
utility to list all drives.
diskpart
list disk
Select the Disk:
X
with the disk number you identified.
select disk X
List Partitions:
list partition
Select the Partition:
Y
with the partition number you wish to format.
select partition Y
Format the Partition:
format
command to format the partition. You can specify the file system (e.g., NTFS, FAT32) and a label for the drive.
format fs=ntfs label=NewDrive quick
quick
option performs a quick format, which is faster but does not check for bad sectors.Assign a Drive Letter (Optional):
assign letter=Z
Exit Diskpart:
exit
to leave the diskpart utility.Important Notes: