Quick fix: A drive marked “Foreign” in Disk Management is a dynamic disk migrated from another system. Right-click the disk header (not partition) → Import Foreign Disks. Windows reads the LDM (Logical Disk Manager) database and re-imports the partition structure. Data is recovered.
You connected a SATA drive from another PC. Disk Management shows it as Dynamic, Foreign. Partitions aren’t visible. File Explorer doesn’t see it. The drive contains data — you need to access it without reformatting.
Affects: Windows 11 when connecting dynamic disks from another system.
Fix time: 5 minutes.
What Foreign means
Windows dynamic disks store partition information in a private database called LDM. When you move a dynamic disk to a different Windows machine, the OS sees the LDM signature but doesn’t recognize the disk as belonging to its own dynamic-disk group. It marks the disk Foreign and waits for an explicit import.
Method 1: Import the Foreign disk
- Open Disk Management (
diskmgmt.msc). - Find the disk header (left of the partition list) showing Dynamic, Foreign.
- Right-click the disk header (NOT a partition; the small section that shows “Disk 1” or similar).
- Choose Import Foreign Disks.
- Confirm the import. Windows reads the LDM database and the partitions become accessible.
- Assign drive letters if Windows didn’t auto-assign.
Method 2: Convert dynamic to basic (if you want to use the drive going forward)
- After import, back up the data to another location.
- In Disk Management, delete all partitions on the dynamic disk.
- Right-click the disk header → Convert to Basic Disk.
- Create new partitions as basic.
- Restore data.
- Basic disks are simpler and don’t face the Foreign issue on cross-PC moves.
Method 3: Use PowerShell for headless import
- Open elevated PowerShell:
Get-Disk | Where-Object PartitionStyle -eq “Foreign”
(Note: GPT/MBR disks may not show as Foreign; this applies to dynamic.) - For dynamic disks, scripting import requires the diskpart tool:
diskpart
list disk
select disk X
import
exit
Verification
- Disk Management shows the disk as Dynamic, Online (not Foreign).
- Partitions have drive letters and are accessible in File Explorer.
- Data is intact.
If none of these work
If import fails with errors about LDM corruption, the dynamic disk database may be damaged. Try recovery tools like R-Studio or TestDisk; both can read dynamic disk partitions even when Windows can’t import. For chronic dynamic-disk issues, the modern recommendation is to use Storage Spaces or basic disks instead — dynamic disks are legacy.
Bottom line: Foreign = dynamic disk waiting for import. Right-click the disk header in Disk Management to import; data appears intact. Consider converting to basic afterward for future portability.