If the external drive is no longer recognized after MBR changes, the practical recovery path is to check whether Windows still sees the disk, then recreate the partition if the disk shows as unallocated.
- Check whether the disk is detected
- Right-click Start > Disk Management.
- If the drive appears there as Unallocated Space, the disk is present but has no usable partition.
- Create a new partition in Disk Management
- In the bottom pane, right-click the Unallocated Space on the external drive.
- Select New Simple Volume and accept the defaults.
- This should make the drive appear again in File Explorer.
- If hidden or old partitions are blocking reuse, wipe and rebuild the disk with DiskPart
- Warning: this erases everything on the external drive, including hidden recovery or system partitions.
- Open Command Prompt as administrator.
- Run these commands in order:
DiskPart
list disk
select disk <external disk number>
clean
create partition primary
format fs=ntfs quick
exit
-
cleanremoves all partitions and formatting from the selected disk. -
create partition primarycreates one full-size partition. -
format fs=ntfs quickformats it for normal Windows use.
- If the drive still is not detected correctly
- Open Device Manager and check for USB or disk devices with an exclamation mark.
- If a device shows a problem, uninstall that device and then select Action > Scan for hardware changes.
- Try the drive on another PC. If it also fails there, the issue is likely with the drive itself rather than the laptop.
- If the goal is specifically to verify MBR/GPT state
- Open an elevated command prompt.
- Run:
DiskPart
list disk
- In the Gpt column, an asterisk means GPT. A blank value means MBR.
If the disk is visible in Disk Management but not in File Explorer, recreating the volume is usually enough. If the disk is not visible on multiple PCs, focus on hardware failure rather than MBR repair.