Mount VHDX: Unterschied zwischen den Versionen

Aus Wiki-WebPerfect
Wechseln zu: Navigation, Suche
(Die Seite wurde neu angelegt: „right == MountVHD/VHDX with CMD == diskpart select vdisk file="<location_of_vhd>" attach vdisk Kategori…“)
 
Zeile 1: Zeile 1:
 +
 +
== Mount VHD/VHDX with CMD ==
 
[[Datei:Mount-vhd-from-command-line.png|right]]
 
[[Datei:Mount-vhd-from-command-line.png|right]]
 
== MountVHD/VHDX with CMD ==
 
 
  diskpart
 
  diskpart
 
  select vdisk file="<location_of_vhd>"
 
  select vdisk file="<location_of_vhd>"
Zeile 7: Zeile 7:
  
  
 +
== Mount/Dismount VHD/VHDX with PowerShell ==
 +
<source lang="powershell">Mount-VHD –Path "<location_of_vhd>" </source>
  
 
+
<source lang="powershell">Dismount-VHD –Path "<location_of_vhd>" </source>
  
  

Version vom 16. Mai 2018, 12:39 Uhr

Mount VHD/VHDX with CMD

Mount-vhd-from-command-line.png
diskpart
select vdisk file="<location_of_vhd>"
attach vdisk


Mount/Dismount VHD/VHDX with PowerShell

Mount-VHD –Path "<location_of_vhd>"
Dismount-VHD –Path "<location_of_vhd>"