|
Errors in the Log:
1. ServerFramework::ExecuteServer_Window - WinMain MainLoop
This means the main loop of the server framework failed to execute properly.
Usually caused by missing configurations, database connection failure, or corrupted/missing files.
2. PdhCollectQueryData() returns error(0xC0000BBC)
This error comes from the Windows Performance Data Helper (PDH) API.
The code 0xC0000BBC typically means:
Insufficient permissions.
Broken performance counters in Windows.
Or improper code usage when collecting system data.
---
How to Fix It:
1. Run the program as Administrator
Right-click the EXE file → Run as administrator.
2. Repair Windows Performance Counters
Open PowerShell as Administrator, and run:
lodctr /r
This will rebuild corrupted performance counters.
3. Check server configuration files
Make sure files like server.cfg, machine.cfg, or any .ini files are correctly set.
|