Mount VHDX: Unterschied zwischen den Versionen
Aus Wiki-WebPerfect
Admin (Diskussion | Beiträge) |
Admin (Diskussion | Beiträge) K |
||
(3 dazwischenliegende Versionen des gleichen Benutzers werden nicht angezeigt) | |||
Zeile 1: | Zeile 1: | ||
+ | == Mount/Dismount VHD/VHDX with DISM == | ||
+ | '''Mount''' | ||
+ | dism /mount-image /imagefile:<full_path_to_vhd> /mountdir:<mount_path> /index=1 | ||
+ | |||
+ | '''Dismount''' | ||
+ | dism /unmount-image /mountdir:<mount_path> /commit | ||
+ | |||
+ | |||
− | == Mount VHD/VHDX with | + | == Mount/Dismount VHD/VHDX with Diskpart == |
[[Datei:Mount-vhd-from-command-line.png|right]] | [[Datei:Mount-vhd-from-command-line.png|right]] | ||
'''Mount''' | '''Mount''' | ||
diskpart | diskpart | ||
− | select vdisk file="< | + | select vdisk file="<full_path_to_vhd>" |
attach vdisk | attach vdisk | ||
'''Dismount''' | '''Dismount''' | ||
diskpart | diskpart | ||
− | select vdisk file="< | + | select vdisk file="<full_path_to_vhd>" |
detach vdisk | detach vdisk | ||
+ | |||
== Mount/Dismount VHD/VHDX with PowerShell == | == Mount/Dismount VHD/VHDX with PowerShell == | ||
'''Mount''' | '''Mount''' | ||
− | <source lang="powershell">Mount-VHD –Path "< | + | <source lang="powershell">Mount-VHD –Path "<full_path_to_vhd>" </source> |
'''Dismount''' | '''Dismount''' | ||
− | <source lang="powershell">Dismount-VHD –Path "< | + | <source lang="powershell">Dismount-VHD –Path "<full_path_to_vhd>" </source> |
Aktuelle Version vom 23. Juni 2020, 12:33 Uhr
Mount/Dismount VHD/VHDX with DISM
Mount
dism /mount-image /imagefile:<full_path_to_vhd> /mountdir:<mount_path> /index=1
Dismount
dism /unmount-image /mountdir:<mount_path> /commit
Mount/Dismount VHD/VHDX with Diskpart
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>"