# General tips

## How to enlarge a win VM

I had to enlarge a win VM because I made some bad calculation when I created it...

### Virtualbox

1. Switch off the VM (do not save the state, properly switch it off)
2. In virtualbox go to file > Virtual Media Manager
3. Select a virtual hard disk in the list and use the “Size” slider at the bottom of the window to change its size. Click “Apply” when you’re done.

### Extend your C:\ partition

1. Start your windows VM
2. Search for disk management in the start menu and click on this\
   ![Click on Create and format hard disk partitions](https://1679624655-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FEkk28J0B2BeDMuesRMr1%2Fuploads%2Fgit-blob-7fdf64c8b0a4fa87a6bbac2974b979ed8f4eef27%2Fwinlab-create-format.png?alt=media)
3. If possible extend the C partition

### Recovery partition in the way of the extention

***If you can not extend it probably means that the recovery partition is in the way of the extention, no worries!***

* If your disk management looks like this it means your recovery partition is blocking the extension of the C Drive\
  ![Partitions with recovery in the middle](https://1679624655-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FEkk28J0B2BeDMuesRMr1%2Fuploads%2Fgit-blob-96d7a6cc57de74eae81678752f49b460a299ee34%2Fpartitions.png?alt=media)
* You will need to delete the recovery partition so that you can extend C with the new space you added
* Search for diskpart in the start menu and launch it as admin

### diskpart

1. `list disk`
2. `select disk <number>` (choose the disk number for your C drive)
3. `list partition`
4. `select partition <number>` (choose the recovery partition)
5. `delete partition override`

### Extend your C

* Now if you co back to disk management, you should be able to extend the C:\ partition
* Do it and reboot :)

## Resources

* A helpful colleague :D, thanks Keven!

{% embed url="<https://www.howtogeek.com/124622/how-to-enlarge-a-virtual-machines-disk-in-virtualbox-or-vmware/>" %}
How to enlarge VM - Howtogeek
{% endembed %}

{% embed url="<https://superuser.com/questions/1023765/how-to-delete-the-recovery-partition-in-windows-10>" %}
How to delete recovery partition - superuser
{% endembed %}

{% embed url="<https://www.tenforums.com/tutorials/157296-how-delete-recovery-partition-windows-10-a.html>" %}
How to delete recovery partition - tenforums
{% endembed %}
