emmasmart 0 Newbie Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.
Pls i need fast help.
Building on ’s quick checks, the next step is to look at the disk in Disk Management (press Win+R, type diskmgmt.msc). If it shows as Unknown/Not Initialized, initialize it (GPT for 2 TB+; MBR for smaller). If it shows Unallocated, create a New Simple Volume. If it already has a partition but formatting fails with that error, use DiskPart to clear any read-only flag and rebuild the partition table. Microsoft documents disk initialization here: Initialize new disks.
If you are OK with wiping the drive completely, run the following as admin (right-click Command Prompt > Run as administrator). Double-check the disk number; the wrong selection will erase the wrong drive.
diskpart
list disk
select disk X ← replace X with the external drive’s number
attributes disk
attributes disk clear readonly
clean ← wipes partition table
create partition primary
format fs=ntfs quick
assign
exit The DiskPart reference is here: DiskPart. If attributes disk shows Read-only: Yes and clearing it fails, or clean returns I/O errors, the enclosure or the drive is likely at fault.
A few quick hardware sanity checks that often fix this exact message:
If you need any files from the disk, stop before running DiskPart; creating/formatting partitions will make recovery harder.
Pls i need fast help.
Check that the hard drive is shown as a disk in Device Manger.
Check that the hard drive is shown as a disk in Device Manger.
you could also try formatting the drive on a different computer and check.
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.