Check IS for VMs on Hyper-V Host
Check which VMs don't have a specific version of Hyper-V Integration Services installed.
John Savill
June 30, 2013
1 Min Read
Q: How can I quickly get a list of virtual machines that don't have a specific version of Hyper-V Integration Services for a host?
A: The most elegant solution is to use System Center 2012 SP1 Operations Manager with the Hyper-V Management Pack Extensions, which has a view showing the VM Integration Services State. If this isn't an option, a simple Windows PowerShell command can show all the virtual machines (VMs) not matching your desired versions. Here's an example of how I used the command:
Get-VM | Where IntegrationServicesVersion -ne 6.2.9200.16433 | ft Name, IntegrationServicesVersion
About the Author
Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.
You May Also Like