Identify the VM where the VMware tools not installed using PowerCLI

Vignesh A Sathiyanantham
1 min readJul 18, 2019

--

If you have a large datacenter having too many VMs, you may find it difficult to filter the VMs, using the super powerful tool vSphere PowerCLI you can get the VM with filters

To get the VM where the tool is not installed, run the below script after connecting with VI-Server

Get-VM -name windows-* | ?{$_.extensiondata.guest.toolsstatus -eq 'toolsNotInstalled'}

Originally published at asvignesh.

--

--

Vignesh A Sathiyanantham
Vignesh A Sathiyanantham

Written by Vignesh A Sathiyanantham

Decade of experience in building product related to private datacenter and public cloud #Java #AWS #VMware #Python

No responses yet