Questions tagged [vhd]

VHD (Virtual Hard Disk) is a file format which represents a virtual hard disk drive (HDD). It may contain what is found on a physical HDD, such as disk partitions and a file system. It is typically used as the hard disk of a virtual machine. VHDs are commonly used by webdevelopers to locally run specific versions of Internet Explorer, but can also be part of entire virtualization solution in Microsoft Virtual Server.

As taken from wikipedia

VHD (Virtual Hard Disk) is a file format which represents a virtual hard disk drive (HDD). It may contain what is found on a physical HDD, such as disk partitions and a file system. It is typically used as the hard disk of a virtual machine. VHDs are commonly used by webdevelopers to locally run specific versions of Internet Explorer, but can also be part of entire virtualization solution in Microsoft Virtual Server.

Since June 2005, Microsoft has made the VHD Image Format Specification available to third parties under the Microsoft Open Specification Promise.

VHDs can be created in, added to and removed from a virtual machine (VM) quickly and easily. VHDs also support various configurations that can allow you to use physical disk space efficiently. The most common virtualization programs that run VHDs are Microsoft Virtual PC and Microsoft Virtual Server.

203 questions
-1
votes
1 answer

Booting Win10 from a "child" VHDX failed with VHD_BOOT_INITIALIZATION_FAILED

during the Win10 Education installation process I create a 100GB fixed size VHDX (1) and a second VHDX (2) with the fixed sized VHDX as its parent. After attaching the fixed size VHDX (1) I successfully installed Win10. After installation I created…
Simon Friese
  • 101
  • 5
-1
votes
2 answers

How rename an Volume (partition) with Objective-C?

I create vhd in different formats (NTFS, FAT32, FAT16, HFS +), I do not find the way to get the $ Volume_name offset of an NTFS partition, plus I would like to convert a string to $ Volume_name. By observing the $ Volume_name of an NTFS partition I…
deek5
  • 367
  • 1
  • 13
-1
votes
1 answer

How to fix internal service error in microsoft azure when deleting vhd/disk?

I'd like to delete my storage account by getting in the Virtual Machine ---> Disk But when I delete the disk it says "Internal Service Error"! Internal Service Error
-1
votes
3 answers

Mount VHD using GRUB2 loopback command

I need to mount a VHD file at grub2 command prompt. I tries using "loopback" command as shown below: grub > insmod ntfs grub > insmod ntldr grub > loopback loop (hd0,1)/test.vhd grub > ls (loop)/ error: unknown filesystem I tried both "static" and…
Fazlin
  • 2,285
  • 17
  • 29
-1
votes
5 answers

Adding Windows 8 VHD to boot menu

Those are the steps I've used to add a VHD image to the boot menu: bcdedit /copy {originalguid} /d "New Windows 7 Installation" bcdedit /set {newguid} device vhd=[D:]\Image.vhd bcdedit /set {newguid} osdevice vhd=[D:]\Image.vhd bcdedit /set…
Ziad
  • 1,036
  • 2
  • 21
  • 31
-2
votes
1 answer

How to remove partition access path without knowing the path of VHD

I used Powershell Add-PartitionAccessPath to map a partition in a VHDX file to say c:\temp\mysupport folder. I am trying to create a function that takes access path as input parameter and remove it. I see Remove-PartitionAccessPath is available. But…
videoguy
  • 1,732
  • 2
  • 24
  • 49
-2
votes
1 answer

Azure Uploading VHD Fail

I have a bizspark account to azure and i am trying to upload my MS Server 2003 VHD to a Storage/blob in order to access it as a VM. I used disk2vhd to make the vhd file which is 68Gb. Then i created a storage with Geo-replication, and added a…
tequilaras
  • 277
  • 3
  • 7
  • 15
-3
votes
1 answer

convert partition to vhd windows API

I am trying to code a tool like disk2vhd. I'm using the VHD windows api: Virtual Disk Functions The Virtual Disk API In Windows 7 Demo various VHD API usage (CppVhdAPI) I created a vhd file and created a partition in it, but I don't know how to…
1 2 3
13
14