Como eu mudo o tamanho de um VHD?

5

Eu tenho um disco rígido virtual de tamanho fixo que está ficando sem espaço. O que é uma boa maneira de aumentar o tamanho?

Este VHD é criado a partir do Microsoft Virtual PC e / ou do Microsoft Virtual Server.

    
por Scott Saad 08.05.2009 / 06:59

2 respostas

6

Há um utilitário gratuito que você pode baixar chamado VHD Resizer que deve simplificar essa tarefa.

Existe também um passo-a-passo de todo o processo que pode ajudar.

    
por 08.05.2009 / 07:34
5

Você pode usar a opção / extend da Ferramenta VHD da Microsoft.

VHD tool is an unmanaged code command-line tool which provides useful VHD manipulation functions including instant creation of large fixed-size VHDs. The source code is included.

Uso:

VhdTool.exe /create <FileName> <Size> [/quiet]
VhdTool.exe /convert <FileName> [/quiet]
VhdTool.exe /extend <FileName> <NewSize> [/quiet]

Create: Creates a new fixed format VHD of size <Size>.
        WARNING - this function is admin only and bypasses
        file system security.  The resulting VHD file will
        contain data which currently exists on the physical disk.

Convert: Converts an existing RAW disk image file to a fixed-format VHD.
         The existing file length, rounded up, will contain block data
         A VHD footer is appended to the current end of file.

Extend: Extends an existing fixed format VHD to a larger size <Size>.
         WARNING - this function is admin only and bypasses
         file system security.  The resulting VHD file will
         contain data which currently exists on the physical disk. 
    
por 08.05.2009 / 08:24

Tags