Disabling prompt to download VMware tools via the virtual machine's configuration file

3

1

The problem

On the VMware Knowledge Base it reads:

When I start a virtual machine, I see a message box warning that says I do not have VMware Tools installed or I do not have the latest version of VMware Tools installed. I already have the latest version of VMware Tools installed or I don't wish to install the VMware Tools at this time. Can I turn off this warning message?

They suggest a neat per-machine solution based on editing a key in the virtual machine's configuration file.

Open your VM config file

If you know how to open a virtual machine's configuration file, skip to next step.

In VMWare Player select a virtual machine and hit Ctrl D. You get the virtual machine settings dialogue. Switch to the "Option" tab and you can read the virtual machine name and working directory.

Go to the working directory and you find name.vmx, where name is the VM name: this is the configuration file.

VMware suggested solution

Add the following line anywhere in the configuration file:

tools.remindInstall = "FALSE"

Despite I set this key as suggested in the vmx config file, VMware Player keeps prompting to download VMware tools.

antonio

Posted 2013-10-19T23:18:00.657

Reputation: 647

Answers

3

Despite what suggested in the VMware Knowledge Base, I solved the problems setting (not one but) two keys:

tools.remindInstall = "false"  
tools.upgrade.policy = "manual"

While they say: "do not have VMware Tools installed or ... do not have the latest version", the first key addresses only the installation and second the obsolete version.

antonio

Posted 2013-10-19T23:18:00.657

Reputation: 647

-1

On VMware Workstation 10.0.0.7, if you already have Tools installed and are still getting prompted to download and install, this seems to have worked for me after a couple restarts of the VM :

Remove this if you see it

toolsInstallManager.updateCounter = "1"

Add this:

tools.remindInstall = "FALSE"

Regards . . .

BretAB

Posted 2013-10-19T23:18:00.657

Reputation: 1

You don't really add anything that hasn't already been stated by the accepted answer. – Ramhound – 2016-04-14T15:29:58.510