What's new

Closed How to create multiple partition USB drive using DiskPart

Status
Not open for further replies.

PHC-SchizOphRenia

Forum Guru
Elite
Joined
Jan 16, 2017
Posts
2,078
Solutions
40
Reaction
3,902
Points
1,044
You can create several partitions on a USB flash drive using the DiskPart CLI tool using the following commands:

(In this example I will create two partition)

First press Windows key and type cmd, press ENTER and type diskpart
1593143916499.png


grant access and another window will open

1593144015438.png


now type the following command for the creation of first partition:

1
list disk

1593144903932.png


2
select <here you must specify the disk number assigned to the USB drive in your system>

1593144943333.png


3
clean

1593145032755.png


4
create partition primary size=[your desired size in mb]

1593145182325.png


5
format quick fs=fat32 label="[Desired name of the partition]"

1593145263989.png


6
assign letter=[Desired letter of the drive]

1593145299187.png


7
active

1593145330838.png


For the second partition:

8
create partition primary

1593145367610.png


9
format fs=ntfs quick label="[Desired name of the partition]"

1593145401786.png


10
assign letter=[Desired letter of the drive]

1593145429163.png


11
list vol

1593145745422.png


12
exit

Confirm if you correctly created partition in Windows File Explorer

1593146798494.png


Sana na-gets nyo hehe di ako magaling mag explain 😂
 

Attachments

Last edited:
[XX='SchizOpRenia_RP, c: 43159, m: 752235'][/XX] tama ka po ang kinakatakot ko lang pag gumagawa ako ng partition e may chance mawala or madelete ata yung di ko na partition kasi ganun nangyare nung naka windows ako nag install ako ng linux nawala
 
Status
Not open for further replies.
Back
Top