Microsoft: Windows 2008 R2 Clustering memory leak
1 min read
Recently I’ve build a Windows 2008 R2 file&print cluster which had a generic service as well, we noticed a lot of memory was used by the active machine so I went on searching for an explanation and found the following knowledge base article
Consider the following scenario:
- An application or service frequently uses the Windows Management Instrumentation (WMI) interface to query a Windows Server 2008 R2 failover cluster for hosted virtual machine information by using one of the following commands:
Select * from MSCluster_Resource where Type = ‘Virtual Machine’ and PrivateProperties.VmID = ‘id’Select * from MSCluster_Resource where Type = ‘type1 ‘ [OR type = ‘typeN’ ]*Select * from MSCluster_Resource where Type = ‘Generic Service’ and PrivateProperties.ServiceName = ‘ServiceName’Select * from MSCluster_Resource where Type = ‘Virtual Machine Configuration’ and PrivateProperties.VmId = ‘id’- Hotfix package 974930 is installed on the queried cluster node.
In this scenario, the memory usage of one Wmiprvse.exe process keeps increasing every time WMI queries are conducted. With time, the Wmiprvse.exe process terminates. Because of this issue, the application or service experiences low performance or function failure.
I’ve downloaded the hotfix and installed it on both nodes and the memory leak was gone.
Kees Baggerman
Latest posts by Kees Baggerman (see all)
- Citrix MCSIO on Nutanix AHV: A Solution to a Problem That Doesn’t Exist - June 10, 2026
- The Cloud Desktop CPU Lottery: What Are You Actually Running On? - June 2, 2026
- Your Cloud Desktop Is Running on Yesterday’s Silicon - May 21, 2026
- When the Orchard Ships Production Software: AI-Augmented Development in the Real World - May 17, 2026
- Nutanix Documentation Script v5.0: Visual Reports, Brand Templates, and Seven Embedded Diagrams - May 15, 2026

