Select Page

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);...