Remember to maintain security and privacy. Do not share sensitive information. Procedimento.com.br may make mistakes. Verify important information. Termo de Responsabilidade

How to Initialize a Disk in Windows Using Disk Management and Command Line Tools

Initializing a disk is a crucial step in preparing a new hard drive for use in a Windows environment. This process involves setting up the disk with a partition style, either MBR (Master Boot Record) or GPT (GUID Partition Table), which allows the operating system to recognize and manage the disk. This article will guide you through the steps to initialize a disk using both the Disk Management tool and Command Line tools in Windows.

Examples:

Using Disk Management

  1. Open Disk Management:

    • Press Win + X and select "Disk Management" from the menu.
    • Alternatively, you can type diskmgmt.msc in the Run dialog (Win + R) and press Enter.
  2. Initialize the Disk:

    • In the Disk Management window, you will see a list of all connected disks. A new, uninitialized disk will be marked as "Not Initialized."
    • Right-click on the disk you want to initialize and select "Initialize Disk."
    • In the Initialize Disk dialog box, choose either MBR or GPT as the partition style and click "OK."
  3. Create a New Volume:

    • Right-click on the unallocated space of the initialized disk and select "New Simple Volume."
    • Follow the New Simple Volume Wizard to specify the volume size, assign a drive letter, and format the partition.

Using Command Line Tools (DiskPart)

  1. Open Command Prompt:

    • Press Win + X and select "Command Prompt (Admin)" or "Windows PowerShell (Admin)."
  2. Run DiskPart:

    • Type diskpart and press Enter to open the DiskPart utility.
  3. List Disks:

    • Type list disk and press Enter to display all connected disks.
  4. Select the Disk:

    • Identify the disk you want to initialize from the list and type select disk X (replace X with the disk number).
  5. Initialize the Disk:

    • Type convert mbr to initialize the disk with MBR partition style, or convert gpt for GPT.
  6. Create a Partition:

    • Type create partition primary to create a primary partition on the disk.
    • Type format fs=ntfs quick to format the partition with the NTFS file system.
    • Type assign letter=X to assign a drive letter to the partition (replace X with the desired letter).

Example Commands

diskpart
list disk
select disk 1
convert gpt
create partition primary
format fs=ntfs quick
assign letter=E

To share Download PDF

Gostou do artigo? Deixe sua avaliação!
Sua opinião é muito importante para nós. Clique em um dos botões abaixo para nos dizer o que achou deste conteúdo.