Mount VHDX: Unterschied zwischen den Versionen

Aus Wiki-WebPerfect
Wechseln zu: Navigation, Suche
K
Zeile 1: Zeile 1:
 
== Mount/Dismount VHD/VHDX with DISM ==
 
== Mount/Dismount VHD/VHDX with DISM ==
 
'''Mount'''
 
'''Mount'''
 
+
dism /mount-image /imagefile:<full_path_to_vhd> /mountdir:<mount_path> /index=1
  
 
'''Dismount'''
 
'''Dismount'''
Zeile 12: Zeile 12:
 
'''Mount'''
 
'''Mount'''
 
  diskpart
 
  diskpart
  select vdisk file="<location_of_vhd>"
+
  select vdisk file="<full_path_to_vhd>"
 
  attach vdisk
 
  attach vdisk
  
 
'''Dismount'''
 
'''Dismount'''
 
  diskpart
 
  diskpart
  select vdisk file="<location_of_vhd>"
+
  select vdisk file="<full_path_to_vhd>"
 
  detach vdisk  
 
  detach vdisk  
  
Zeile 23: Zeile 23:
 
== Mount/Dismount VHD/VHDX with PowerShell ==
 
== Mount/Dismount VHD/VHDX with PowerShell ==
 
'''Mount'''
 
'''Mount'''
<source lang="powershell">Mount-VHD –Path "<location_of_vhd>" </source>
+
<source lang="powershell">Mount-VHD –Path "<full_path_to_vhd>" </source>
  
 
'''Dismount'''
 
'''Dismount'''
<source lang="powershell">Dismount-VHD –Path "<location_of_vhd>" </source>
+
<source lang="powershell">Dismount-VHD –Path "<full_path_to_vhd>" </source>
  
  

Version vom 23. Juni 2020, 13:15 Uhr

Mount/Dismount VHD/VHDX with DISM

Mount dism /mount-image /imagefile:<full_path_to_vhd> /mountdir:<mount_path> /index=1

Dismount



Mount/Dismount VHD/VHDX with CMD

Mount-vhd-from-command-line.png

Mount

diskpart
select vdisk file="<full_path_to_vhd>"
attach vdisk

Dismount

diskpart
select vdisk file="<full_path_to_vhd>"
detach vdisk 


Mount/Dismount VHD/VHDX with PowerShell

Mount

Mount-VHD –Path "<full_path_to_vhd>"

Dismount

Dismount-VHD –Path "<full_path_to_vhd>"