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)
- 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
- Nutanix AHV and Citrix MCS: Adding a persistent disk via Powershell – v2 - November 19, 2019
- Recovering a Protection Domain snapshot to a VM - September 13, 2019
- Checking power settings on VMs using powershell - September 11, 2019

