Open piechade opened 3 years ago
This logic can fix it. I'm running perfect since days with it.
public void PerformHealthCheck()
{
var lightingServiceRunning = Process.GetProcessesByName("LightingService").Length != 0;
while (!lightingServiceRunning)
{
Thread.Sleep(1000);
lightingServiceRunning = Process.GetProcessesByName("LightingService").Length != 0;
}
}
The Asus device provider is too slow after the last big update and I get the following error on every boot.