Ressource : http://technet.microsoft.com/en-us/library/ee851589(v=ws.10).aspx
Diskpart for Data volume
Steps to Manage Multiple Hard Drives:
- List All Drives:
- Open Command Prompt as an administrator.
- Type
diskpart
and press Enter. - Enter
list disk
to view all connected drives.
- Selecting a Drive:
- Use
select disk #
(replace # with the disk number) to choose a drive.
- Use
- Partitioning:
- Once a drive is selected, use
create partition primary size=XXXXX
to create a partition. Replace XXXXX with the size in MB.
- Once a drive is selected, use
- Formatting:
- Use
format fs=ntfs quick
to quickly format the partition to NTFS. - Use
format fs=FAT32 quick
to quickly format the partition to FAT32.
- Use
- Assigning Drive Letters:
- Use
assign letter=X
to assign a drive letter. Replace X with the desired letter.
- Use
- Deleting Partitions:
- Use
delete partition
to remove a partition.
- Use
Diskpart for System volume
BIOS
1 2 3 4 5 6 7 | select disk 0 clean create partition primary select partition 1 active assign exit |
LEGACY
1 2 3 4 5 6 7 8 9 10 | select disk 0 clean convert gpt create partition efi size=100 format quick fs=fat32 label="System" assign letter="S" create partition msr size=128 create partition primary format quick fs=ntfs label="Windows" assign letter="C" |
TIPS
Depending on the BIOS, disk 0 is not the one you want to format
To select the system disk
1 | Select disk SYSTEM |
To select the second disk
1 | Select disk NEXT |
0 Comments