Reconnect the Disk and Use a Different Port
Unplug and reconnect the disk properly.
Try a different USB or SATA port, or connect to another system.
Check if the drive powers up and is detected in the BIOS.
Check Disk Management
Press Win + X and choose Disk Management.
If the disk appears:
- Right-click and choose Change Drive Letter and Paths to assign a letter.
- If the status is Offline, right-click and select Online.
- If it shows as RAW or Unallocated, the file system might be corrupted.
Use DiskPart to Clear Attributes
Open Command Prompt as Administrator and run:
csharp
diskpart
list disk
select disk X (replace X with the number of the affected disk)
attributes disk
If the disk is read-only, remove the attribute:
arduino
attributes disk clear readonly
Run CHKDSK
If a drive letter is assigned, run a file system check:
chkdsk E: /f /r
Replace E: with your actual drive letter.
Update Disk Drivers
Open Device Manager (Win + X → Device Manager).
Expand Disk Drives and IDE ATA/ATAPI Controllers.
Right-click each entry → Update driver → Search automatically.
Alternatively, visit your motherboard or storage device manufacturer’s website for the latest drivers.
Check and Modify Disk Permissions
Right-click the drive → Properties → Security tab.
Ensure your user account has Full Control or at least Read/Write permissions.
Click Edit to adjust permissions as needed.
Scan for Malware
Go to Settings → Privacy & Security → Windows Security → Virus & threat protection.
Run a Full Scan to detect any malware blocking access.
You can also use trusted third-party antivirus solutions.
Assign a Drive Letter (if missing)
If no drive letter is assigned:
- Open Disk Management.
- Right-click the disk → Change Drive Letter and Paths → Add.
- Choose an available letter and click OK.
Use a Different Computer
Test the drive on another system.
If accessible there, the issue may be system-specific or user-profile related.
Recover Data and Format (as a last resort)
If all else fails, use recovery software to extract important files.
Then format the drive via Disk Management.
Warning: Formatting erases all data—proceed only if recovery isn’t possible.