...
In some Windows Systems the Service "Processor Queue" might go and stay critical. In this case we will give you a short guidance:
Code Block |
---|
2021-08-03 17:15:35.063 [Err ] Timeout [3] seconds broken when query WMI
...
...
...
2021-08-03 15:02:44.435 [Warn ] Object 'Win32_PerfRawData_PerfOS_System' in 4ms sends NO DATA
2021-08-03 15:02:44.436 [Warn ] Sub Section 'system_perf' has no data to provide, status = [2] |
Note |
---|
You will need powershell to run the following commands! |
...
Code Block |
---|
Measure-Command {Get-WmiObject -class Win32_PerfRawData_PerfOS_System -computername WIN-MOP95J96UQA -namespace root\cimv2 |Format-List *} Measure-Command {Get-WmiObject -class Win32_ComputerSystem | Format-List *} |
Possible solutions
- Increase the wmi timeout as described here: Increase WMI Timeout
- Reboot the system
- WMI Database is broken → Use the WMI Explorer for further debugging
Info |
---|
https://docs.microsoft.com/de-de/windows/win32/cimwin32prov/win32-computersystem |
...