Remember to maintain security and privacy. Do not share sensitive information. Procedimento.com.br may make mistakes. Verify important information. Termo de Responsabilidade
Initializing a disk is a crucial step when setting up a new hard drive or SSD in a Windows environment. This process prepares the disk for use by creating a partition and a file system. Without initialization, the operating system cannot store data on the disk. This guide will walk you through the steps to initialize a disk using both the Disk Management tool and Command Prompt (CMD) in Windows.
Examples:
Using Disk Management Tool:
Open Disk Management:
Win + X
and select "Disk Management" from the menu.Win + R
, type diskmgmt.msc
, and press Enter.Initialize the Disk:
Create a New Volume:
Using Command Prompt (CMD):
Open Command Prompt as Administrator:
Win + X
and select "Command Prompt (Admin)" or "Windows PowerShell (Admin)."Use Diskpart Utility:
diskpart
and press Enter to launch the Diskpart utility.List and Select the Disk:
list disk
and press Enter to display all connected disks.select disk <disk number>
and press Enter (replace <disk number>
with the actual disk number).Initialize the Disk:
convert gpt
and press Enter to initialize the disk with GPT. For MBR, type convert mbr
instead.Create a Partition:
create partition primary
and press Enter to create a primary partition.format fs=ntfs quick
and press Enter to format the partition with the NTFS file system.assign letter=<drive letter>
and press Enter to assign a drive letter (replace <drive letter>
with the desired letter, e.g., D
).Exit Diskpart:
exit
and press Enter to exit Diskpart.