VMware Cloud Community
jpoling
Enthusiast
Enthusiast

VMware Tools status

Is there a way to use PowerCLI to determine the state of VMware tools on a guest? i.e., are the tools running?

Thanks,

Jeff

0 Kudos
2 Replies
RvdNieuwendijk
Leadership
Leadership

Jeff,

you can retrieve the tools status with the following PowerCLI oneliner:

Get-VM | Get-View | Select-Object @{N="Name";E={$_.Name}},@{Name="ToolsStatus";E={$_.Guest.ToolsStatus}}

Robert

Blog: https://rvdnieuwendijk.com/ | Twitter: @rvdnieuwendijk | Author of: https://www.packtpub.com/virtualization-and-cloud/learning-powercli-second-edition
jpoling
Enthusiast
Enthusiast

Perfect. . .that is what I needed. Thanks!

0 Kudos