Mise à jour [KB2952664](https://support.microsoft.com/en-us/kb/2952664):
>
Compatibility mise à jour for upgrading Windows 7
This mise à jour performs diagnostics sur le Windows systems that
participate dans le Windows Customer Experience Improvement Program.
These diagnostics help determine whether compatibility problèmes may be
encountered when the latest Windows système d'exploitation is installé.
This mise à jour will help Microsoft and its partners ensure compatibility
for customers who want to installez le latest Windows système d'exploitation.
Said otherwise Microsoft uses your CPU and power to detect potential problèmes they may encounter si vous move to Windows 10 (or if they force you to move to this version parce que it suits they agenda for not loosing against Google and Apple smartphones OSes).
They scan your fichiers, and send the analysis vers leir servers. The problème is that utilisateurs who "*participate dans le Windows Customer Experience Improvement Program*" have seen their système slowed a lot avec e.g. 70% CPU monopolized by the MS scanner, a programme named `Compattelrunner.exe`. The latter can be launched on 100 or more concurrent threads.
(Source: [Microsoft Community](http://answers.microsoft.com/en-us/windows/forum/windows_7-performance/how-do-i-prevent-microsoft-from-installing/0f82b270-7f94-403f-abfd-e738d8e5051e?auth=1))
At some point utilisateurs want to stop being used as Microsoft's auxiliaries at their own expenses and discomfort.
The usual way to supprimer an mise à jour, and prevent it from reinstalling is (details on [Microsoft's site](http://windows.microsoft.com/en-us/windows/troubleshoot-problems-removing-updates#1TC=windows-7):
- Switch Windows Mise à jour in manual mode
- Désinstaller KB2952664
- Reboot
- Get nouveau Windows mises à jour
- In the nouveau mises à jour "hide" KB2952664.
- Switch Windows Mise à jour back to your usual mode.
Problème: In some cases this ne work. As soon as the système is rebooted, the KB2952664 mise à jour is reinstalled automatiquement, in spite of it being sur le "hidden mises à jour" list, *even si vous are in manual mode*. Said otherwise it installs sans your autorisations. Some have filled a complaint vers le FTC (US [Federal Trade Commission](https://www.ftc.gov/)) to try and stop this:
>
Microsoft mises à jour installer a programme called compattelrunner.exe sur mon
ordinateur sans my authorization even though my mise à jour paramètres say,
"Télécharger important mises à jour but let me choose whether to installer
them." Compattelrunner.exe serves no legitimate or beneficial purpose,
and causes serious performances problèmes (applications running slowly
or freezing up); I caught it sur mon ordinateur this afternoon consuming
71% of my ordinateur's CPU (central processing unit) capacity. I have
previo...
(Source: [Microsoft Community](http://answers.microsoft.com/en-us/windows/forum/windows_7-performance/how-do-i-prevent-microsoft-from-installing/0f82b270-7f94-403f-abfd-e738d8e5051e?auth=1))
Question: Existe-t-il un moyen de get rid du mise à jour, sans it reinstalling at the next redémarrer?
I'm posting a solution, as Je crois it sera useful for others dans le same situation. Il y a many online endless posts and useless suggestions. This question and its solution should save time. Self-answered questions ne add to reputation, feel free to post better answers.
Windows mise à jour KB2952664 (Compattelexécuterner.exe) cannot be uninstallered from Windows 7
Re: Windows mise à jour KB2952664 (Compattelexécuterner.exe) cannot be uninstallered from Windows 7
**Symptômes** : Il semble que the Windows mise à jour is **reinstalled automatiquement** sans your autorisations, in spite you prevented it, and stopped any automatique mises à jour.
**Situation réelle** : The mise à jour a été installé *multiple times* (possibly 10 times or more) each time avec a nouveau version number, removing it supprimer **seulement one version**.
**Solution** : Use **PowerShell** to list and supprimer versions.
Si vous really ne know what Powershell is, or ne have technical knowledge about Windows, ensuite c'est better you learn better going further. Powershell is a powerful tool to do anything sur votre filesytem and configuration, including harm. Vous devez use it avec Administrator privileges, meaning you **ne va pas have the usual système safety net**.
The solution comes from this Microsoft Community thread: [Unable to uninstall update KB2952664](https://answers.microsoft.com/en-us/windows/forum/all/unable-to-uninstall-update-kb2952664/1c0e8b8a-c79b-4998-b6be-f8134cef4e82).
Launch PS avec administrator rights.
List installé versions du mise à jour:
```
dism /online /get-packages | findstr KB2952664
```
Supprimer un par un the versions:
```
dism /online /remove-package /PackageName:Package_for_KB2952664~31bf3856ad364e35~amd64~~6.1.1.3
```
Confirm tout is gone:
```
Get-HotFix -id KB2952664
```
It should display a `cannot find hot-fix` *erreur*.
**Situation réelle** : The mise à jour a été installé *multiple times* (possibly 10 times or more) each time avec a nouveau version number, removing it supprimer **seulement one version**.
**Solution** : Use **PowerShell** to list and supprimer versions.
Si vous really ne know what Powershell is, or ne have technical knowledge about Windows, ensuite c'est better you learn better going further. Powershell is a powerful tool to do anything sur votre filesytem and configuration, including harm. Vous devez use it avec Administrator privileges, meaning you **ne va pas have the usual système safety net**.
The solution comes from this Microsoft Community thread: [Unable to uninstall update KB2952664](https://answers.microsoft.com/en-us/windows/forum/all/unable-to-uninstall-update-kb2952664/1c0e8b8a-c79b-4998-b6be-f8134cef4e82).
Launch PS avec administrator rights.
List installé versions du mise à jour:
```
dism /online /get-packages | findstr KB2952664
```
Supprimer un par un the versions:
```
dism /online /remove-package /PackageName:Package_for_KB2952664~31bf3856ad364e35~amd64~~6.1.1.3
```
Confirm tout is gone:
```
Get-HotFix -id KB2952664
```
It should display a `cannot find hot-fix` *erreur*.