Archive for the ‘Auto start vmware script’ Category

Mới sưu tầm được cái script để tự động start vmware trên Linux. #!/bin/bash # check if Windows VM is running VMWIN=$(ps -ef | grep ‘wts4.vmx’ | grep -v ‘grep’) # if string is empty then the VM is not running; start it if [ -z "$VMWIN" ]; then echo “Starting Windows VM…” # vmrun [...]