Select Page

Nsclient++: Solving various PDH value errors

Problem: Errors like these: ERROR: Could not get data for 5 perhaps we don’t collect data this far back? ERROR: Failed to get PDH value PdhAddCounter failed: The specified object was not found on the computer.   (C0000BB8)   Solution: Many errors regarding...

Detecting if the OS architecture fits to your software

Scenario: Basically, most developers publish their projects separately for x86 and x64 platforms. This can lead to problems if the user installs the x86 version on an x64 OS; the software might not work because of driver problems, wrong 3rd party DLL references with...

How to solve audiodg.exe high CPU usage

I saw this problem when listening to a WMA webstream for a few hours. The audio output suddenly stopped and CPU usage of audiodg.exe was very high. There are several ways so solve it: * (Disable all microphones) (Didn’t work in my case, I got a bluescreen...

Start Windows service automatically after installing product

In your installer class of the service itself, use the event AfterInstall to start the service. After setup has finished, the service will start. public ProjectInstaller() { InitializeComponent(); AfterInstall += new InstallEventHandler(ProjectInstaller_AfterInstall);...