I don't have the DD17FA14 subkey in my registry. Is there any other key I should look under?
Disabling Windows Compatability Telemetry
Does anybody know how to stop the Windows Compatability Telemetry (CompatTelRunner.exe) from starting? It causes extremely high disk usage which results in large performance issues.
Windows for home | Previous Windows versions | Performance and system failures
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
166 answers
Sort by: Most helpful
-
Anonymous
2017-01-22T21:14:13+00:00 -
Anonymous
2017-01-17T21:02:26+00:00 Then make a .cmd with the following code and start it on bootup:
@echo off
:start
taskkill /f /im CompatTelRunner.exe >nul 2>nul
timeout 2 >nul
goto start
-
Anonymous
2017-01-17T20:25:58+00:00 If it keeps coming back (and it does for all of us), you could schedule a test to run every 30 seconds or something and execute taskkill /f /im CompatTelRunner.exe. This would force kill the process if it's running, and it shouldn't impact performance even if you ran it once per second. Note that this will probably require administrator privileges.
In an ironic twist of fate, the task scheduler itself is quite broken too. The conditionals are messed up (for Network presence, for one), and many of my self-defined tasks don't run past a reboot. Besides, the lowest interval it can run at is 5 minutes, which is about 4:59 mins longer than I want CompatTelRunner to run unchecked.
-
Anonymous
2017-01-17T19:40:49+00:00 If it keeps coming back (and it does for all of us), you could schedule a test to run every 30 seconds or something and execute taskkill /f /im CompatTelRunner.exe. This would force kill the process if it's running, and it shouldn't impact performance even if you ran it once per second. Note that this will probably require administrator privileges.
-
Anonymous
2017-01-17T19:05:04+00:00 Unfortunately, this fix is unrelated to Compatibility Telemetry. That setting, though it has been renamed in Win 10, is one of the first services that I disable on a new install for customers. However, compattelrunner.exe still runs from time to time. We've noticed that it happens most often after a Windows update that requires a reboot.
With our customers with SSDs , we get a few calls. However, our customers with HDDs hammer us with support calls whenever that thing kicks in. Some of the older computers become unusable for a significant amount of time, and you can only imagine the nasty responses we get from our customers.
Like many in this thread, we have also attempted to make this problem go away, only to find later, it still exists. We will find it eventually, hopefully.