Delete Linux Partition
Use the Windows DiskPart utility to permanently remove the Zorin OS partition from your drive.
Selecting the wrong partition with delete partition override can corrupt Windows or delete the wrong drive's data. Verify the partition size (~56 GB) and number before deleting.
1.1 โ Open Command Prompt as Administrator
Press Win + S, type cmd, right-click
Command Prompt, and select Run as administrator.
Confirm the UAC prompt.
1.2 โ Enter DiskPart and list partitions
These are read-only listing commands โ they display information only and will not modify anything. After running, look carefully at the output to identify your Linux partition.
diskpart
list disk
select disk 1
list partition
In the output, look for a partition of approximately 56 GB
with no assigned drive letter and no NTFS label. It will appear as a
Primary partition. Note its partition number โ you
will use it in the next command (replace X with it).
1.3 โ Delete the Linux partition
Replace X with the actual partition number of the Linux partition
you identified above.
select partition X
delete partition override
exit
DiskPart displays: "DiskPart successfully deleted the selected partition."
The ~56 GB space now shows as Unallocated in
Windows Disk Management (Win + R โ diskmgmt.msc).