Update Workflows/Windows/Delete Windows Recovery Partition.md

This commit is contained in:
2025-01-07 14:19:14 -07:00
parent 6b7cfe8a58
commit d6ef8e17cf

View File

@ -6,18 +6,20 @@ Sometimes you are running a virtual machine and are running out of space, and wa
diskpart # (1) diskpart # (1)
list disk # (2) list disk # (2)
select disk 0 # (3) select disk 0 # (3)
select partition 4 # (4) list partition # (4)
delete partition override # (5) select partition 4 # (5)
select partition # (6) delete partition override # (6)
extend # (7) select partition # (7)
exit # (8) extend # (8)
exit # (9)
``` ```
1. This opens the disk management 1. This opens the disk management
2. This displays all disks attached to the device. 2. This displays all disks attached to the device.
3. Ensure this disk number corresponds to the operating system disk. Open the Disk Management GUI if you are not 100% certain. 3. Ensure this disk number corresponds to the operating system disk. Open the Disk Management GUI if you are not 100% certain.
4. This partition number is for the partition of type "Recovery" 4. List all partitions on the previously-selected disk.
5. This instructs the computer to delete the partition and ignore the fact that it was a recovery partition. 5. This partition number is for the partition of type "Recovery"
6. You want to select the operating system partition now, so we can expand it. 6. This instructs the computer to delete the partition and ignore the fact that it was a recovery partition.
7. This will expand the operating system partition into the unallocated space that is now available to it. 7. You want to select the operating system partition now, so we can expand it.
8. Gracefully close the disk management CLI utility. 8. This will expand the operating system partition into the unallocated space that is now available to it.
9. Gracefully close the disk management CLI utility.