NavigationGeek Stuff
Current Projects
Newest RecipesSearch |
Useful VMWare Server console cli commandsThere are some commands that come with VMWare Server that are useful for doing administration via the commandline. This is helpful when you can't connect via the console app and need to restart a vmware session. vmware-cmd -l Get state of vmware server vmware-cmd stop/start/suspend/reset vmware-cmd Answer a question that may be stopping your VM from booting: vmware-cmd Silly shell script to get state of all of your vmware sessions:
for i in `vmware-cmd -l`; do echo -n "${i} state ";vmware-cmd ${i} getstate; done
|