How to create multiple partition in USB

How to create multiple partition in USB

In this article we will see that how to create multiple partition in usb. These steps are very easy and helpful.

We remind that common USB drives in Windows are identified as Basic, while USB sticks and SD cards as Removable. This feature is realized by checking RMB (removable media bit) on the flash controller.

Method 1 - From Command Prompt

Please following all the steps.

1.  Diskpart
2. list disk
3. select disk * (* your disk number)
4. clean
5. create partition primary size = * (* desired partition size in MB)
6. assign letter = * (* desired partition letter)
7. create partition primary ( for remaining capacity)
8. assign letter = * (* desired partition letter)

NB: format the partitions for use them.



Example:-

We have 32GB USB pendrive in which making 1st partition of 16GB and second is 12GB. 

C:\Windows\system32>diskpart

DISKPART> list disk

DISKPART> select disk 1

DISKPART> clean

DISKPART>create partition primary size = 16384

DISKPART> assign letter = I

DISKPART> create partition primary 12288

DISKPART> assign letter = J





Method 2 - From Disk Management

1.  Open Disk Management console (type diskmgmt.msc) and Format it into NTFS file system.

2. Right-click the partition on the USB stick and select Shrink Volume in the context menu.

3.Specify the size of free space after shrinking and click Shrink. For example, we want to create two partitions of 7 GB and 8 GB on the 15 GB storage device.





4.Right-click the unpartitioned space and select New Simple Volume to create another partition.



5.For instance, let’s create a FAT32 partition




Tags:

Share:

1 comments

Please leave your comments...... Thanks