with vboxmanage, how to list all snapshots of vm?

virtualbox

Solution

Use this

vboxmanage snapshot VM_NAME list

You can also specify the output format by including the option `--machinereadable`

All commands of vboxmanage can be found by

vboxmanage --help

Problem

With virtualbox (On windows 7 host), how can I list all the snapshots of a VM? Ideally, there will be one line per snapshot, and each snapshot will have the name and the UUID.

Original source