Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
39 views3 pages

Disk Part

To manage multiple partitions on a USB drive using Windows Disk Management, you must first delete all existing partitions using the Diskpart command line utility. This allows creating a new single partition taking up the full drive. Diskpart enhances the Disk Management GUI by allowing selecting the target disk and partitions and deleting partitions individually or cleaning the disk. Caution that using Diskpart to clean a drive erases all its data.

Uploaded by

erwin
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
39 views3 pages

Disk Part

To manage multiple partitions on a USB drive using Windows Disk Management, you must first delete all existing partitions using the Diskpart command line utility. This allows creating a new single partition taking up the full drive. Diskpart enhances the Disk Management GUI by allowing selecting the target disk and partitions and deleting partitions individually or cleaning the disk. Caution that using Diskpart to clean a drive erases all its data.

Uploaded by

erwin
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

Windows does have a Disk Management tool for simple disk management operations.

For USB
drive or logical drive, if the drive already has more than one partition, Disk Management will not
allow you manage extra partitions on removable storage devices, unless you deleted all of the
partitions and make a new, full size partition. Disk Management will not provide delete volume
option for extra partitions on USB drives if more than one partition is detected.

How to combine two partitions or more into one and restore USB drive to it's original state?
To delete partitions on USB drive, you will need to use the command-line utility: Diskpart.
Diskpart enhances the Disk Management graphical user interface (GUI).
Caution:
When you use DiskPart to clean USB drive partition, all data on the USB will be erased.
Step 1, start a command prompt as an administrator (CMD)
1. Click Start.
2. In the Start Search box, type cmd, and then press CTRL+SHIFT+ENTER or right click
choose "Run as administrator"
3. If the User Account Control dialog box appears, confirm that the action it displays is what
you want, and then click Continue.
Step 2, run DISKPART.
At the command prompt, type:
diskpart

Step 3, List all disk in DISKPART.


At the DISKPART prompt, type:

list disk

Important! Make down the disk number of the disk from which you want to delete the partition.
Step 4, select your USB disk which you want to delete the partition.
Replace the * with your disk number from step 3.
At the DISKPART prompt, type:
select disk*

Step 5, if you want to delete all partitions and create one full size partition, use the
following command and go to step 10 below.
At the DISKPART prompt, type:
clean

Step 6, list all partitions on the drive.


At the DISKPART prompt, type:
list partition

Make note of the number of the partition that you want to delete.
Step 7, select the partition you want to delete.
Replace the * with your disk number from step 5.
At the DISKPART prompt, type:
select partition*

Step 8, delete partition.


This command will delete the partition that you select from step 7.
At the DISKPART prompt, type:
delete partition

Step 9, repeat the step 6-8 if you need to delete other partitions.
All delete partitions will be left as unallocated space.

Step 10, you can now use Disk Management to manage the drive now.
If you want to create one full partition using DISKPART, use the following command.
At the DISKPART prompt, type:
create partition primary

Step X. After all done, exit DISPART.


exit

#DISKPART

You might also like