vote up 2 vote down star
1

Hey everyone, I'm using Virtual PC and working with a virtual hard disk (*.vhd) that is only sized at 8.2 GB. I would like to double the size to something like 16-20GB. I see options for compacting the VHD but nothing to expand it. It's set to "dynamically expand" but I'm installing some software and it doesn't seem to resize itself to a larger space.

Thanks much.

flag

58% accept rate

5 Answers

vote up 1 vote down check

VHD Resizer

link|flag
It's worth nothing that you will also need to expand the volume to use the newly-added space. If the volume is non-system, then you can do it really easily through the Computer Management Window. Otherwise, you'll need to use the DISKPART tool. – UnhipGlint Oct 17 '08 at 13:00
vote up 1 vote down

Heres my solution, using VHDResizer and DISKPART on a Windows XP host.

  1. Download VHDResizer from here
  2. Following these instructions from "Murnic" on this thread didnt work, on entering EXTEND, not sure on the exact wording now, but it was along the lines of cant extend this volume.

The easiest way to do this (as long as you have enough hard drive space) is to extend your existing VHD using VHD Expander which gives you two VHD files. The newly extended file will take the name of your existing VHD. You might want to Defragment, Precompact, and Compact your VHD prior to extending your VHD.

In Virtual PC 2007 go to Settings.

  • Select your OLD VHD as Hard Disk 1
  • Select your newly extended VHD as Hard Disk 2
  • Boot your VM
  • Open an Command Prompt
  • Run diskpart
  • From DISKPART> - Execute LIST VOLUME - Select your new VHD volume by executing SELECT VOLUME where is your new VHD most likely 2 - Execute EXTEND - You should see a success message. If not you may have to recreate your extended VHD due to an error in the process.
  • Quit Diskpart.exe by typing EXIT
  • Shut Down the VM
  • Remove both VHD files from the Hard Disks list
  • Add your newly extended VHD as Hard Disk 1
  • Boot your VM.
  • You will get a Windows Newly Added Hardware message after a short time.
  • Reboot the VM when prompted
  • Start using your newly extended VHD!

Here is Microsoft's information on extending volumes using Diskpart.exe: http://support.microsoft.com/kb/325590

35bef0a03a8380f974ec160b279b3e65 Mount the image
  1. C:>Program Files\Microsoft Virtual Server\Vhdmount>vhdmount /m “C:Documents and Settings\All Users\Documents\Shared Virtual Machines\.vhd”
  2. Start diskpart and expand the partition

    C:>Program Files\Microsoft Virtual Server\Vhdmount>diskpart

    DISKPART>list disk

    DISKPART>select disk 3 -----check the number in the list

    DISKPART>list part

    DISKPART>select part 1 -----check the number in the list

    DISKPART>extend DISKPART>list part -----check the new size

    DISKPART>exit

  3. Dismount and save changes

    C:>Program Files\Microsoft Virtual Server\Vhdmount>vhdmount /u /c “C:Documents and Settings\All Users\Documents\Shared Virtual Machines\.vhd”

You can get download Microsoft Virtual Server here. You can do a custom install and only select VHDMount

Some more information using VHDMount

Using VHDMount with Windows XP -

It is not possible to use '/m' (Mount), you can only use '/p' (Plug in).

The reason for this is that VHDMount uses VDS (the Virtual Disk Service) to assign a disk letter to the virtual hard disk after it is mounted, but VDS is only included in Windows Server 2003 and later. This is not too big of an issue though, as unlike Windows Server 2003, Windows XP will automatically mount the virtual hard disk when it is plugged in. This means that the only functionality you lose on Windows XP is the ability to specify exactly which drive letter should be used.

link|flag
vote up 0 vote down

Never worked with Virtual PC but from other virtualization software I know I guess that dynamically expand means that initially the .vhd file will take less space in the HD than the specified and will dynamically grow as you keep installing programs or adding files into the virtual drive UP TO the specified size.

For what you want I guess that you will have to modify the specified size in the virtual hard drive from Virtual PC's setup window.

A bit offtopic but give a go to Virtual Box: www.virtualbox.org

link|flag
vote up 0 vote down

For vmware users, you can download a free edition of vmware converter which not only lets you resize virtual disks but also lets you convert from physical to virtual machines and vice-versa.

link|flag
vote up 0 vote down

Here is a solution that worked for me: Use "CopyWipe" or a similar software to make a hardcopy to a new vhd, as described here:

Eric Cosky

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.