Mount VHDX: Unterschied zwischen den Versionen
Aus Wiki-WebPerfect
Admin (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „right == MountVHD/VHDX with CMD == diskpart select vdisk file="<location_of_vhd>" attach vdisk Kategori…“) |
Admin (Diskussion | Beiträge) K |
||
(7 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/Dismount VHD/VHDX with Diskpart == | ||
+ | [[Datei:Mount-vhd-from-command-line.png|right]] | ||
+ | '''Mount''' | ||
diskpart | diskpart | ||
− | select vdisk file="< | + | select vdisk file="<full_path_to_vhd>" |
attach vdisk | attach vdisk | ||
+ | |||
+ | '''Dismount''' | ||
+ | diskpart | ||
+ | select vdisk file="<full_path_to_vhd>" | ||
+ | detach vdisk | ||
+ | == Mount/Dismount VHD/VHDX with PowerShell == | ||
+ | '''Mount''' | ||
+ | <source lang="powershell">Mount-VHD –Path "<full_path_to_vhd>" </source> | ||
+ | '''Dismount''' | ||
+ | <source lang="powershell">Dismount-VHD –Path "<full_path_to_vhd>" </source> | ||
Zeile 14: | Zeile 33: | ||
[[Kategorie:Windows]] | [[Kategorie:Windows]] | ||
+ | [[Kategorie:PowerShell]] |
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>"