Advertisement
efxtv

Extend Volume Not Available in Windows 10: Fix Using CMD

Dec 15th, 2023
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.96 KB | Cybersecurity | 0 0
  1. Extend Volume Not Available in Windows 10/11: Fix Using CMD
  2.  
  3. I want to extend my C drive volume as I've created an OVA File with a 15GB hard disk attached to it. I need to increase the space, but the problem is that the Extend Volume option is grayed out in my Windows 10 Disk Management. To make the Extend Volume option clickable, we need to delete the recovery partition sitting between the C Drive and unallocated space. The C drive (or the drive you want to extend) needs to be next to the drive you want to extend for the Extend Volume option to be highlighted.
  4.  
  5. Q. How to Check Disk Management in Windows 10?
  6. Ans. -Press Win + R, type compmgmt.msc, and click on Disk Management.
  7. - You will be able to see the entire partition table.
  8.  
  9. Q. How to Create Unallocated Space in Windows 10/11?
  10. Ans. -Go to Disk Management and delete any useless or empty partitions.
  11. - The deleted space will be highlighted in black, representing unallocated space.
  12. - You can later assign this space to other drives or create a new drive from it.
  13.  
  14.  
  15. The reason behind "Extend Volume" is grayed out in your Windows 10 or 11 is that there is a Recovery drive between the C: drive and the unallocated space in your VM/Main OS. To fix this, why don't we delete the recovery partition to align it in the same way shown below:
  16.  
  17. The partition table:
  18. Before deleting Recovery Partition:
  19. EFI Partition | C Drive (15GB) | Recovery Partition | Unallocated space (50GB)
  20.  
  21. After Deleting Recovery Partition:
  22. EFI Partition | C Drive (15GB) | Unallocated Space (50GB)
  23.  
  24. After Creating Recovery Partition:
  25. EFI Partition | C Drive (65GB) | Recovery Partition (1GB)
  26.  
  27. ________________________________________________________________________________________________________
  28. LET US FIX THE PROBLEM ASK FOR VIDEO LINK ( T.ME/ERRORFIX_TV )
  29. ________________________________________________________________________________________________________
  30.  
  31. Step 1
  32. ----Disable the recovery mode
  33. # Disable to recovery mode
  34. # Run cmd as admin
  35. $ reagentc /disable
  36.  
  37. Step 2
  38. ---Delete the Recovery partition To extend
  39. - Run CMD as Admin
  40. $ disk part
  41. $ list disk
  42. $ select disk 0
  43. $ list partition
  44. $ select parttition 3
  45. $ delete partition override
  46. - Extend volume must be highlighted
  47.  
  48. Step 3
  49. ---Create new parttion of 1GB
  50. - Shrink 1GB of space from C: or any Drive to create a Recovery partition again
  51. - Create a new partition with unallocated space
  52. - No label
  53. - Name partition as 'System Reserved'
  54. - Save it
  55.  
  56. Step 4
  57. ---
  58. - Assign ID to 'System Reserved' Partition
  59. $ diskpart
  60. $ list disk
  61. $ sel disk 0
  62. $ list partition
  63. $ select partition 3
  64. $ det par
  65. $ set id=27
  66. $ det par
  67. $ exit
  68. - ID must have been changed to 27
  69.  
  70.  
  71. Step 5
  72. ---Enable recovery mode
  73. Run cmd as admin
  74. $ reagentc /enable
  75. $ reagentc /info
  76.  
  77. Step 6
  78. ---
  79. Get into recovery mode to verify if everything is fine
  80. - Press Shift + Restart > Troubleshoot > Advance > Command prompt
  81.  
  82. Join our telegram channel for private Classes t.me/efxtv
  83.  
  84.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement