Pls i need fast help.

Dani AI

Generated

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:

  • Try a different USB cable and a different USB port; for 2.5 in drives, use a powered hub if the port cannot supply enough power.
  • If the enclosure is suspect, test the bare drive in another enclosure or via SATA (if possible).
  • Run the manufacturer’s diagnostic to check for bad sectors; for example, Seagate’s free SeaTools works on most brands.

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.

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.