Startup/Shutdown Script for vmWare
From KlavoWiki
To stop all virtual machines run the following command:
find /var/lib/vmware/ -iname "*.vmx" -exec vmware-cmd {} stop \;
To start all virtual machines run the following command:
find /var/lib/vmware/ -iname "*.vmx" -exec vmware-cmd {} start \;