It seems that uuid.action cannot be added using setconfig and vmware-cmd
Now using a single command I can add this line into a VMX, for example
echo 'uuid.action = "move"' >> EQL1-Vol1/VM-02/VM-02.vmx 
I am trying to find a way to mass do this using 'find' and 'exec'.
Something like
find . -name '*.vmx' -exec vmware-cmd -s register {} \;
or
find . -name '*.vmx' -exec vmware-cmd '{}' stop hard \;
But I can't seem to find a way to use the echo command and find / exec.
Anyone got an idea ...