Created
April 27, 2017 08:50
-
-
Save alincc/8a124762bdc5a013b429f9648a7dc2eb to your computer and use it in GitHub Desktop.
VirtualBox clone snapshot using command line in Windows
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Find UUID of the snapshot | |
"c:\Program Files\Oracle\VirtualBox\VBoxManage.exe" list hdds | grep MACHINE_NAME | |
Location: C:\Users\user\VirtualBox VMs\MACHINE_NAME\Snapshots/{45e0b604-0b3f-4612-9d3f-fa7107d59dc2}.vmdk | |
Location: C:\Users\user\VirtualBox VMs\MACHINE_NAME\Snapshots/{3c99ddf7-83ed-4110-83ff-76d68b59fc30}.vmdk | |
Location: C:\Users\user\VirtualBox VMs\MACHINE_NAME\Snapshots/{3c7e01f1-bced-4746-bf2a-cde5ec44e718}.vmdk | |
# Clone snapshot to a different folder | |
# This will create a .vdi (virtual disk | |
"c:\Program Files\Oracle\VirtualBox\VBoxManage.exe" clonehd C:\Users\user\VirtualBox VMs\MACHINE_NAME\Snapshots/{3c7e01f1-bced-4746-bf2a-cde5ec44e718}.vmdk D:\thedisk-full.vdi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment