You can suspend the virtual machine to do a back up if you plan to restore the virtual machine on the same system. You you do not plan to restore it on the same system, you should power off the VM to make the back up.
I tried suspending multiple VMs in a bat file but
only the first VM on the script is put in suspend
state, what did I do wrong. Below is a sample:
vmware-cmd "C:\Virtual Machines\LT5182S1\Windows 2000
Server.vmx" suspend
vmware-cmd "C:\Virtual Machines\LTSYSDEV\Windows
Server 2003 Standard Edition.vmx" suspend
vmware-cmd in your bat file calls "vmware-cmd.bat" first, so use call in front of it.
call vmware-cmd "C:\Virtual Machines\LT5182S1\Windows 2000 Server.vmx" suspend
call vmware-cmd "C:\Virtual Machines\LTSYSDEV\Windows Server 2003 Standard Edition.vmx" suspend