Mac – resize disk capacity VDI

vdivirtual machine

I use virtualBox version 4.2.6 and I install windows server 2008. the issue is when I was working with this windows a message is displayed said that the capacity of disk is limited. so I want to know if there is a method to increase the disk size.
thank

Best Answer

Resize of VDI is supported, but you can only make hard disks bigger. You tried:

VBoxManage.exe modifyhd "C:\Documents and Settings\User\VirtualBoxVMs\windows\windows.vdi" --resize 40

That means you try to make a 40 MB harddisk, your harddisk is bigger, though. Try:

VBoxManage.exe modifyhd "C:\Documents and Settings\user\VirtualBo x VMs\windows\windows.vdi" --resize 40000

This make new size 40 GB.

Related Question