How to Fix USB Flash Dirve Fragmented into Separate partitions!

 



Now Manually format the disk

To create a partition using DiskPart, after entering the DiskPart utility, you would typically follow these steps:

  1. List the disks available on your system using the command: LIST DISK
  2. Select the disk on which you want to create a partition using the command: SELECT DISK <disk number> (replace <disk number> with the appropriate number from the list)
  3. Once the disk is selected, you can create a partition. For example, to create a primary partition, you can use the command: CREATE PARTITION PRIMARY
  4. Optionally, you can format the partition using the FORMAT command.
  5. Exit DiskPart using the EXIT command.

Here's an example of the complete sequence of commands:

shell
DISKPART> LIST DISK DISKPART> SELECT DISK 0 DISKPART> CREATE PARTITION PRIMARY DISKPART> FORMAT FS=NTFS QUICK DISKPART> EXIT

This sequence would create a primary partition on Disk 0 and format it with the NTFS file system quickly. Adjust the disk number and formatting options as needed for your specific requirements.


Share your thoughts

Previous Post Next Post

نموذج الاتصال