How to Convert a Dynamic Disk to a Basic Disk in Windows 10 and Windows 11
A safe step-by-step guide for changing a Windows dynamic disk back to a basic disk using Disk Management, DiskPart, and backup-based recovery methods.
β± 7 min readπͺ Windows 10πͺ Windows 11β οΈ Backup strongly recommended
Overview
Dynamic Disk vs Basic Disk in Windows: What Is the Difference?
A basic disk is the standard disk type used by most Windows PCs. It stores data in regular partitions such as EFI System Partition, Recovery Partition, C: drive, D: drive, or other primary partitions. Basic disks work with almost all operating systems, backup tools, recovery environments, and disk cloning programs.
A dynamic disk is an older Windows disk type that supports dynamic volumes such as simple, spanned, striped, mirrored, and RAID-5 volumes. It was designed for more flexible disk layouts, but it is less compatible with modern recovery tools and is rarely needed on home PCs today.
βΉοΈ
Quick answer
Windows can convert a basic disk to dynamic without deleting partitions, but converting a dynamic disk back to basic with built-in tools normally requires deleting all dynamic volumes on that disk first. That means you should back up your files before starting.
Why Convert a Dynamic Disk Back to Basic?
You may need to convert a dynamic disk to a basic disk if Windows Setup cannot install to it, a cloning program does not support it, a recovery environment cannot read it correctly, or you want the disk to work more predictably with other operating systems and partition tools.
You accidentally converted a disk to dynamic in Disk Management.
You want to install Windows on the disk.
You need better compatibility with backup or cloning software.
You want to remove old spanned, striped, or mirrored volume configuration.
You are preparing the disk for use in another computer or external enclosure.
Preparation
Before You Convert a Dynamic Disk to Basic: Important Safety Notes
Disk type conversion is not the same as renaming a drive or changing a drive letter. The wrong command can remove partitions, delete volumes, or make Windows unbootable. Before you change anything, confirm which disk you are working with and copy important files to another physical device.
β οΈ
Data loss warning
The built-in Windows methods in this guide require removing dynamic volumes before conversion. Do not continue unless you have a verified backup or you are working with an empty disk.
Recommended Checklist
Back up all files from the dynamic disk to another disk, NAS, cloud storage, or external USB drive.
Make sure the backup opens correctly and contains the files you actually need.
Disconnect non-essential external drives to avoid selecting the wrong disk.
Write down the disk number shown in Disk Management, for example Disk 1 or Disk 2.
If the disk contains Windows, create a full system image or plan a clean reinstall before making changes.
β
Best practice
If the disk contains important data, the safest built-in method is: back up files β delete dynamic volumes β convert to basic β recreate partitions β restore files.
Step 1
How to Check Whether a Disk Is Dynamic or Basic in Windows
Before converting anything, verify that the disk is actually dynamic. You can do this through the graphical Disk Management console or through the DiskPart command-line tool.
Check Disk Type in Disk Management
Press Win + X and select Disk Management.
Look at the lower part of the window where disks are listed as Disk 0, Disk 1, and so on.
Under the disk number, check whether Windows shows Basic or Dynamic.
Also check the drive letters and volume names to make sure you identify the correct disk.
Check Disk Type with DiskPart
You can also verify the disk type from Command Prompt, PowerShell, or Windows Terminal:
Command Prompt / PowerShelldiskpart
list disk
In the list disk output, dynamic disks are marked with an asterisk under the Dyn column.
βΉοΈ
Tip
Disk numbers in DiskPart match the disk numbers in Disk Management. If Disk Management shows the target as Disk 2, DiskPart will also use select disk 2 for that same device.
Method 1
How to Convert Dynamic Disk to Basic Using Disk Management
Disk Management is the easiest built-in method if the disk does not contain Windows or if you have already backed up all data. The process is visual and reduces the chance of mistyping a command, but it still requires deleting existing dynamic volumes.
Back up all files from the dynamic disk to another physical disk.
Press Win + X and select Disk Management.
Find the dynamic disk in the lower pane. Confirm its size, drive letters, and volume names.
Right-click each volume on that dynamic disk and choose Delete Volume.
Repeat until the entire disk is shown as Unallocated.
Right-click the disk label on the left side, for example Disk 1 Dynamic.
Select Convert to Basic Disk.
After conversion, right-click the unallocated space and choose New Simple Volume.
Follow the wizard to create a partition, assign a drive letter, and format it as NTFS or exFAT.
Restore your files from the backup.
β οΈ
Important
Do not delete volumes from the wrong disk. If you are not sure, cancel the operation and compare disk size, drive letter, and device model first.
When This Method Is Best
Use Disk Management when the disk is a secondary HDD, SSD, USB drive, or old data drive and you have already copied the files elsewhere. It is also the most beginner-friendly option when the disk layout is simple.
Method 2
How to Convert Dynamic Disk to Basic Using DiskPart Commands
DiskPart is a powerful command-line disk management utility included with Windows. It is useful when Disk Management fails, when the graphical interface is unavailable, or when you are working from Windows Recovery Environment. However, it is also easier to make a destructive mistake, so check every disk number carefully.
β οΈ
Warning
The clean command removes the partition and volume information from the selected disk. Use it only after backing up the disk and confirming the selected disk number.
DiskPart Conversion Steps
Open Command Prompt, PowerShell, or Windows Terminal as administrator.
Run diskpart.
List all disks and identify the dynamic disk.
Select the correct disk.
Clean the disk.
Convert it to basic.
Create and format a new partition.
DiskPartdiskpart
list disk
select disk 1
detail disk
clean
convert basic
create partition primary
format fs=ntfs quick
assign
exit
Replace select disk 1 with the actual number of your target disk. The detail disk command is included as an additional safety check because it displays the disk model, current volumes, and other identifying details before you run clean.
Optional: Use GPT Instead of MBR After Cleaning
If you want the disk to use the modern GPT partition style after cleaning it, run convert gpt before creating the partition:
DiskPart β GPT Layoutdiskpart
list disk
select disk 1
detail disk
clean
convert gpt
create partition primary
format fs=ntfs quick
assign
exit
βΉοΈ
GPT or MBR?
For modern Windows 10 and Windows 11 PCs using UEFI, GPT is usually the better choice. Use MBR only if you need compatibility with older BIOS-based systems or old software that cannot read GPT disks.
Method 3
Safest Built-in Method: Back Up, Recreate the Basic Disk, and Restore Files
If the dynamic disk contains important files, the safest approach is not to search for a shortcut. Instead, make a complete backup, rebuild the disk as a basic disk, and then copy the files back. This is slower, but it is predictable and uses only standard Windows tools.
Recommended Workflow
Copy all files from the dynamic disk to another physical disk or reliable backup location.
Open several folders in the backup and verify that the files are readable.
Open Disk Management.
Delete the dynamic volumes from the target disk.
Convert the disk to basic.
Create a new simple volume or multiple partitions.
Format the new volume and assign a drive letter.
Copy your files back to the newly created basic volume.
β
Why this is safer
This method does not depend on undocumented conversion tricks. If something goes wrong during disk recreation, your files remain available in the backup location.
Can Third-Party Tools Convert Without Data Loss?
Some third-party partition managers advertise non-destructive dynamic-to-basic conversion. Such tools may work for simple volumes, but they still modify low-level disk metadata. Use them only after creating a backup. If the disk has spanned, striped, or mirrored volumes, non-destructive conversion is more complex and riskier.
System Drive
Can You Convert the Windows System Disk from Dynamic to Basic?
If the dynamic disk contains the active Windows installation, the operation is more complicated. You cannot simply delete the C: volume from within the running Windows session and continue using the same installation. Built-in tools generally require you to erase the disk, convert it, and then reinstall or restore Windows.
Safe Options for a Dynamic System Disk
Create a system image, boot from recovery media, recreate the disk as basic, and restore the image if your backup tool supports the target layout.
Clean install Windows after backing up personal files and license information.
Clone to another basic disk using software that explicitly supports dynamic source disks.
Use a professional partition tool only after making a full disk image backup.
β οΈ
Do not experiment on your only boot disk
If the dynamic disk is your C: drive and contains Windows Boot Manager, EFI, Recovery, or system partitions, create recovery media and a full backup before changing anything.
Comparison
Best Ways to Convert Dynamic Disk to Basic in Windows
Method
Data Loss Risk
Best For
Difficulty
Disk Management
High unless backed up
Secondary disks, empty disks, beginner users
Easy
DiskPart
High; clean erases disk layout
Advanced users, WinRE, broken GUI scenarios
Medium
Backup β Recreate β Restore
Low if backup is verified
Important data, safest built-in workflow
Medium
Third-party partition manager
Varies by layout and tool
Users who need attempted non-destructive conversion
Medium to advanced
Clean Windows installation
High unless files are backed up
Dynamic system disk, corrupted layouts, fresh start
Medium
Troubleshooting
Fix Problems When Converting a Dynamic Disk to Basic
βConvert to Basic Diskβ Is Grayed Out
This usually means the dynamic disk still contains volumes. In Disk Management, the disk must be completely unallocated before the built-in Convert to Basic Disk option becomes available.
Back up all files from the disk.
Right-click each volume on the dynamic disk.
Select Delete Volume.
When the entire disk is unallocated, right-click the disk label and try again.
DiskPart Says βVirtual Disk Service Errorβ
This error can appear if the disk is offline, read-only, in use, or contains protected volumes. Try the following commands after selecting the correct disk:
DiskPartattributes disk
attributes disk clear readonly
online disk
If the disk contains the active Windows installation, boot from Windows installation media or recovery media before making destructive changes.
The Disk Contains Spanned or Striped Volumes
Spanned and striped dynamic volumes can use space from multiple physical disks. Deleting or converting one disk can break the entire volume. Back up the complete volume first, not just one disk, then delete the dynamic volumes from all involved disks and recreate a standard basic layout.
Windows Does Not Boot After Disk Conversion
If you converted or cleaned the wrong disk, Windows Boot Manager or the EFI System Partition may have been removed. Boot from Windows installation media, open Repair your computer, and use Startup Repair. If the system partition was erased, restore from a full image backup or reinstall Windows.
FAQ
Frequently Asked Questions About Converting Dynamic Disk to Basic
Q
Can I convert a dynamic disk to basic without losing data?
βΌ
With built-in Windows tools, usually no. Disk Management and DiskPart require deleting dynamic volumes or cleaning the disk before conversion. Some third-party tools claim to convert certain layouts without data loss, but you should still create a full backup first.
Q
Does converting to basic remove my files?
βΌ
The conversion itself is not the only issue: the required preparation step normally deletes the dynamic volumes. Once those volumes are deleted, the files become inaccessible unless you restore them from backup or use data recovery software.
Q
Is DiskPart better than Disk Management for this task?
βΌ
DiskPart is more powerful, but not safer. Disk Management is easier for most users because it shows the disk layout visually. DiskPart is useful in recovery environments, scripted workflows, or when the graphical tool fails.
Q
Should I use GPT or MBR after converting the disk?
βΌ
For most modern Windows 10 and Windows 11 computers, GPT is recommended, especially on UEFI-based systems and disks larger than 2 TB. MBR is mainly for older BIOS systems or legacy compatibility.
Q
Can I convert an external USB dynamic disk to basic?
βΌ
Yes, if Windows detects the disk correctly. Back up the data, delete the dynamic volumes, convert the disk to basic, create a new simple volume, format it, and copy the files back.
Summary
Which Dynamic-to-Basic Conversion Method Should You Use?
For most users, the best way to convert a dynamic disk to a basic disk in Windows is to back up the data, delete the dynamic volumes, convert the disk in Disk Management, recreate the partitions, and restore the files. This method is simple, supported by Windows, and predictable.
Use DiskPart only when you are comfortable with command-line disk management or when Disk Management is not available. For a Windows system disk, treat the conversion as a full recovery or reinstall operation, not as a casual setting change.
β‘ Quick Recap
Safest built-in workflow: Back up β delete volumes β convert to basic β restore files Best beginner method: Disk Management Best advanced method: DiskPart with clean and convert basic Best for system disks: Full backup, recovery media, then reinstall or restore image Most important rule: Never convert or clean a disk until you have verified the backup