Update Workflows/Windows/Delete Windows Recovery Partition.md
This commit is contained in:
@ -8,6 +8,9 @@ list disk # (2)
|
|||||||
select disk 0 # (3)
|
select disk 0 # (3)
|
||||||
select partition 4 # (4)
|
select partition 4 # (4)
|
||||||
delete partition override # (5)
|
delete partition override # (5)
|
||||||
|
select partition # (6)
|
||||||
|
extend # (7)
|
||||||
|
exit # (8)
|
||||||
```
|
```
|
||||||
|
|
||||||
1. This opens the disk management
|
1. This opens the disk management
|
||||||
@ -15,3 +18,6 @@ delete partition override # (5)
|
|||||||
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. This partition number is for the partition of type "Recovery"
|
||||||
5. This instructs the computer to delete the partition and ignore the fact that it was a recovery partition.
|
5. This instructs the computer to delete the partition and ignore the fact that it was a recovery partition.
|
||||||
|
6. You want to select the operating system partition now, so we can expand it.
|
||||||
|
7. This will expand the operating system partition into the unallocated space that is now available to it.
|
||||||
|
8. Gracefully close the disk management CLI utility.
|
Reference in New Issue
Block a user