Diskpart Utility Tutorial
Diskpart:
Diskpart utility is a command line utility that allows you to manage and configure your hard disks, volumes, or partitions
Diskpart utility is a command line utility that allows you to manage and configure your hard disks, volumes, or partitions
How to format the pendrive using diskpart utility if it is not getting listed in the Windows Explorer?
Steps to be followed
- Open command prompt in administrator mode
- type "diskpart"
- type "list disk" which displays all disks present on the computer
- type "select disk 1", if you want to the select the second disk, you can choose any number
- type "clean", which will remove all the partition or volume formatting from the disk with focus
- type "create partition primary", which creates a primary partition on the current basic disk. after you create the partition, the focus automatically shifts to the new partition
- type "active", which marks the partition as active
- type "format FS=NTFS LABEL="ANY NAME" QUICK", performs a quick format
- type "assign" which will assign a drive letter
- type "exit" and close the command line
Comments
Post a Comment