VMware: Enable copy & paste in VMware Console for a VM

Hi,

copy & paste is disabled by default in VMware vSphere.

If you want to enable copy & paste for a VM 2 parameters must be set:

isolation.tools.copy.disable =false
isolation.tools.paste.disable =false

These Parameter does not exist by default. Add it with the VMware vSphere Client or with the Webfrontend.

If you prefer the command line use PowerCli

get-VM "MyVM" | New-AdvancedSetting  -Name isolation.tools.copy.disable -Value false -Confirm:$false -Force
get-VM "MyVM" | New-AdvancedSetting  -Name isolation.tools.paste.disable -Value false -Confirm:$false -Force

Michael

Advertisment to support michlstechblog.info

Leave a Reply

Your email address will not be published. Required fields are marked *

Time limit is exhausted. Please reload CAPTCHA.