Where Did I Put My Tools? Are They In Sync? – Checking the VMware Tools with PowerShell

It’s 7PM, do you know where your VMware Tools are? Rather, do you know if all your VM’s have them installed and running? Here is a one-liner to check that with PowerShell: get-vm | where { $_.PowerState -eq "PoweredOn" } | Get-VMGuest | where { $_.State -ne "Running" } | select vmName, State What this
-> Continue reading Where Did I Put My Tools? Are They In Sync? – Checking the VMware Tools with PowerShell