help! my laptop recognize my external hdd but its not showing in my computer, then i go to computer management and my hdd is not initialized. im worried that my files in hdd will be deleted after i initialized the disk. Can i recover the files?

Dani AI

Generated

As reported, the enclosure is detected but Windows shows the disk as “Not initialized.” Do not initialize or format the disk if the files are needed — initializing writes new partition metadata and can make existing data unrecoverable. (learn.microsoft.com)
A safe principle: stop any write activity to the drive and avoid running automated repairs on the original device, because repair attempts can further damage metadata on a failing disk. (gnu.org)

Practical, non-destructive checks (after the quick attempts mentioned by and ):

  • Try a different USB cable/port and a different PC (this rules out the enclosure/cable or host USB issue).
  • If available, attach the drive via a powered dock or SATA inside a desktop (USB enclosures sometimes mask controller faults). Use a SMART tool (e.g., CrystalDiskInfo) to check health if the drive is visible. (ja.plugable.com)

If the data matters, image the drive first (sector-by-sector) and work from the image. GNU ddrescue is purpose-built for fragile drives and is the recommended approach to copy as much readable data as possible without stressing the disk. Example initial run on a Linux live-USB:

sudo ddrescue -f -n /dev/sdX /path/to/image.img /path/to/image.log
sudo ddrescue -d -r3 /dev/sdX /path/to/image.img /path/to/image.log

(Replace /dev/sdX and paths appropriately.) (gnu.org)

After imaging, try non-destructive recovery tools on the image: TestDisk can search for and restore lost partition tables; PhotoRec (same project) can carve files if the filesystem metadata is gone. Never run CHKDSK or initialize on the original if the goal is recovery — CHKDSK can fail on RAW volumes and repair attempts may make recovery harder. (cgsecurity.org)

If the drive clicks, has physical noise, or the data is irreplaceable, professional labs (e.g., Ontrack) should be contacted—DIY attempts on a mechanically failing drive often reduce the chance of a successful professional recovery. (ontrack.com)

Recommended Answers

All 4 Replies

How is the drive connected? USB I presume? Have you tried rebooting the computer with the drive attached. That will often fix this issue. If you initialize the drive, you WILL lose all your data.

i've tried that also, but nothing happened.

What format is the External disk partition? FAT32? EXT4? MAC Journaled?

right click o my computer , then manage and click on disk management
if the Drive is showing up then it's working

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.