23

Update KB2952664:

Compatibility update for upgrading Windows 7

This update performs diagnostics on the Windows systems that participate in the Windows Customer Experience Improvement Program. These diagnostics help determine whether compatibility issues may be encountered when the latest Windows operating system is installed. This update will help Microsoft and its partners ensure compatibility for customers who want to install the latest Windows operating system.

Said otherwise Microsoft uses your CPU and power to detect potential problems they may encounter if you move to Windows 10 (or if they force you to move to this version because it suits they agenda for not loosing against Google and Apple smartphones OSes).

They scan your files, and send the analysis to their servers. The problem is that users who "participate in the Windows Customer Experience Improvement Program" have seen their system slowed a lot with e.g. 70% CPU monopolized by the MS scanner, a program named Compattelrunner.exe. The latter can be launched on 100 or more concurrent threads.

enter image description here
(Source: Microsoft Community)

At some point users want to stop being used as Microsoft's auxiliaries at their own expenses and discomfort.

The usual way to remove an update, and prevent it from reinstalling is (details on Microsoft's site:

  • Switch Windows Update in manual mode
  • Uninstall KB2952664
  • Reboot
  • Get new Windows updates
  • In the new updates "hide" KB2952664.
  • Switch Windows Update back to your usual mode.

Problem: In some cases this doesn't work. As soon as the system is rebooted, the KB2952664 update is reinstalled automatically, in spite of it being on the "hidden updates" list, even if you are in manual mode. Said otherwise it installs without your permission. Some have filled a complaint to the FTC (US Federal Trade Commission) to try and stop this:

Microsoft updates install a program called compattelrunner.exe on my computer without my authorization even though my update settings say, "Download important updates but let me choose whether to install them." Compattelrunner.exe serves no legitimate or beneficial purpose, and causes serious performance problems (applications running slowly or freezing up); I caught it on my computer this afternoon consuming 71% of my computer's CPU (central processing unit) capacity. I have previo...

(Source: Microsoft Community)

Question: Is there a way to get rid of the update, without it reinstalling at the next reboot?


I'm posting a solution, as I believe it will be useful for others in the same situation. There are many online endless posts and useless suggestions. This question and its solution should save time. Self-answered questions don't add to reputation, feel free to post better answers.

mins
  • 1,091

7 Answers7

38

A simpler way to stop the CPU usage is to disable the Microsoft Compatibility Appraiser task in Task Scheduler under \Microsoft\Windows\Application Experience.

13

Symptoms: It seems the Windows update is reinstalled automatically without your permission, in spite you prevented it, and stopped any automatic updates.

Actual situation: The update has been installed multiple times (possibly 10 times or more) each time with a new version number, removing it remove only one version.

Solution: Use PowerShell to list and remove versions.

If you really don't know what Powershell is, or don't have technical knowledge about Windows, then it's better you learn better going further. Powershell is a powerful tool to do anything on your filesytem and configuration, including harm. You need to use it with Administrator privileges, meaning you won't have the usual system safety net.


The solution comes from this Microsoft Community thread: Unable to uninstall update KB2952664.

Launch PS with administrator rights.

List installed versions of the update:

dism /online /get-packages | findstr KB2952664

Remove one by one the versions:

dism /online /remove-package /PackageName:Package_for_KB2952664~31bf3856ad364e35~amd64~~6.1.1.3

Confirm everything is gone:

 Get-HotFix -id KB2952664

It should display a cannot find hot-fix error.

mins
  • 1,091
4

From my blog http://nonsumhircum.livejournal.com/883.html, you need to stop "participating in the Windows Customer Experience Improvement Program", which you can do (for W7 & W8) when running as admin, by:

  1. Start the control panel and click Action Center > Change Action Center settings.
  2. Click Customer Experience Improvement Program settings.
  3. Select No, I don't want to participate in the program and click Save changes.

Next, disable the scheduled tasks, thus:

  1. Start the control panel and click Administrative Tools > Task Scheduler.
  2. In the Task Scheduler (Local) pane of the Task Scheduler dialog box, expand the Task Scheduler Library > Microsoft > Windows nodes and open the Application Experience folder:
    • Disable the AITAgent and ProgramDataUpdater tasks:
  3. In the Task Scheduler Library > Microsoft > Windows node, open the Customer Experience Improvement Program folder.

    • Disable the Consolidator, KernelCEIPTask, and UsbCEIP tasks.

Obviously disabling the above means you don't get the benefits of being in the WCEI Program(me).

Jool
  • 256
2

Using PowerShell with elevated privileges, you can disable Microsoft Compatibility Appraiser with the following command:

Disable-ScheduledTask -TaskName "Microsoft Compatibility Appraiser" -TaskPath "\Microsoft\Windows\Application Experience"
Gareth
  • 19,080
Julio Nobre
  • 405
  • 5
  • 17
2

Maybe related ot not, but i was experiencing near the same but not in CPU, it was I/O and arround 1h30'.

The cause was near similar, same place on Task Schedule, but different task.

Under \Microsoft\Windows\Application Experience there are three (on my case) tasks: Microsoft Compatibility Appraiser, ProgramDataUpdater and StartupAppTask

I had first and second Disabled but third was Enabled, and seen last time execution i can see it runs more than once on each reboot.

Also i could see it running for one hour and a half on each reboot, making all I/O to disk be very hard for other apps, so computer was really slow.

I have also Disabled the third one, so now all three are Disabled and the I/O problem on each reboot just disapear.

Now my PC can be used in less than a minute, instead of having to wait more than ninty (90) minutes, yes one hour and thirty minutes; that is a great win!

Notes:

  • The start time of that task represents the last run on each reboot and in my case is near two hours after reboot (in the meantime that time is changing some times, so i can see it runs more than once on each reboot).
  • ProgramDataUpdater and StartupAppTask has no triggers, but when they are enabled they are run on each reboot
  • The value of StartupAppTask last time run is updated on each reboot near ten times or more, and after two hours since reboot seems not to be launched again
  • After disable all three tasks, Windows starts without 100% I/O and can be used in less than a minute, having any of them enabled the I/O at starts goes for 1.5 hours or more, so i can not do anything on that time, except wait for it to finish.

So my solution is to disable all tasks under \Microsoft\Windows\Application Experience; sorry M$, but i will not allow you to use my PC on each reboot for near two hours, when i power it on i need to use it, i can not wait each time so much time!

Claudio
  • 21
0

It was the CompatTelRunner.exe that was crashing my 8 Gig PC 4 CPU each startup after 3 minutes. I created a batch loop that swats their bug with > taskkill /T /F /IM CompatTelRunner.exe each 8 seconds by CHOICE delay. That saved my PC from repeated Microsoft induced crashes(Blue Screens) to my Hard Drive.

"CompatTelRunner.exe","3472","Services","0","3,736 K","Unknown","NT AUTHORITY\SYSTE "CompatTelRunner.exe","3500","Services","0","43,852 K","Unknown","NT Killing Suspect Tasks - SUCCESS: The process with PID 3500 (child process of PID 3472) has been terminated. SUCCESS: The process with PID 3472 (child process of PID 564) has been terminated.

I now used the disables of Experience Tasks posted above ( From http://nonsumhircum.livejournal.com/883.html ) to see if I can now stop my task swatter too.

Ramhound
  • 44,080
Patrick
  • 11
0

Based on mins answer, this is my one-liner version of the big button saying "Get rid of Windows Customer Experience Improvement Program":

  1. Open a Command prompt with administrator privileges.

  2. Copy the following insane line, paste it on the Command Prompt window and press Enter.

    @for /f "usebackq tokens=2 delims=:" %a in (`dism /online /get-packages^|findstr KB2952664`) do @(@set "pckgnm=%a"&@call start "" /b /wait dism /norestart /online /remove-package /PackageName:%pckgnm:~1%&@set pckgnm=)

  3. If the machine is slow or you do this for the first time, it's likely going to last a long while.

  4. With the /norestart option, you will not be prompted to restart if needed, so you should just in case. Time for point-threeing your life more point-threeing more point 3(?).

  5. Anyway, check that all the "updates" are gone. Right after the insane command if you answered n or when/if you return if you answered y. (Remember you can do the 3 again.)

    dism /online /get-packages | findstr KB2952664

  6. Enjoy your a-little-less-bloated system.

  7. I'll suppose you have the system not configured to install automatically updates. From time to time MS will "offer" you to install a new version of this "hotfix". From my experience (see the comments to mins answer), just after uninstalling them, it appeared again in important hotfixes and, when I hid it reappeared in optional updates. After that, I've seen this KB number appear several times. You must remember it or part of the number to avoid reinstalling.

cdlvcdlv
  • 1,739