Remember to maintain security and privacy. Do not share sensitive information. Procedimento.com.br may make mistakes. Verify important information. Termo de Responsabilidade
Creating a volume in Windows is an essential task for managing storage on your computer. Whether you're setting up a new hard drive or organizing existing space, Windows provides several tools to create and manage volumes. This article will guide you through the process using both the Disk Management utility and command-line tools like Diskpart.
Disk Management is a built-in Windows utility that allows you to manage your hard drives and the volumes or partitions on them. Here's how to create a new volume using Disk Management:
Open Disk Management:
Win + X
and select Disk Management from the menu.diskmgmt.msc
in the Run dialog (Win + R
) and press Enter.Initialize the Disk (if it's a new disk):
Create a New Volume:
Complete the Wizard:
Diskpart is a powerful command-line utility for managing disks, partitions, and volumes. Here's how to create a volume using Diskpart:
Open Command Prompt:
Win + R
, type cmd
, and press Enter.Start Diskpart:
diskpart
and press Enter to start the Diskpart utility.List and Select the Disk:
list disk
to display all available disks.select disk X
(replace X with the disk number).Create a Partition:
create partition primary size=XXXX
(replace XXXX with the desired size in MB).list partition
to confirm the partition was created.Format the Partition:
select partition X
(replace X with the partition number).format fs=ntfs quick
to format the partition with the NTFS file system.Assign a Drive Letter:
assign letter=X
(replace X with your desired drive letter).Exit Diskpart:
exit
to leave the Diskpart utility.C:\> diskpart
DISKPART> list disk
DISKPART> select disk 1
DISKPART> create partition primary size=10240
DISKPART> list partition
DISKPART> select partition 1
DISKPART> format fs=ntfs quick
DISKPART> assign letter=E
DISKPART> exit