Thanks!!!!!!
dism /online /get-packages | findstr KB2952664
Very helpful, with this line I could see all the different KB2952664 versions. Some machines had 9 of them!
dism /online /remove-package /PackageName:Package_for_KB2952664~31bf3856ad364e35~amd64~~6.1.1.3
This removes version 6.1.1.3 only. On machines that also have versions 6.1.0.12, 6.1.3.0, 6.1.7.4, 6.1.8.2, etc. etc. this command must be repeated with the appropriate version numbers.
Run a final Get-HotFix -id KB2952664 command , and the output should be something like:
Get-HotFix : This command cannot find hot-fix on the machine 'localhost'. Verify the input and Run your command again.
At line:1 char:11
- Get-HotFix <<<< -id KB2952664
+ CategoryInfo : ObjectNotFound: (:) [Get-HotFix], ArgumentException
+ FullyQualifiedErrorId : GetHotFixNoEntriesFound,Microsoft.PowerShell.Commands.GetHotFixCommand
Which translates to: "KB2952664 not found"; Success!!!
Amazing!!
I couldnt get rid of this pesky update until I found this thread.
I first ran this:
dism /online /get-packages | findstr KB2952664
It returned thirteen different packages/versions which I then deleted one by one. On several of them it said I needed to restart my machine for the changes to take effect. However I chose to delete all of them before I restarted once. And then this update
was finally gone.
Thanks a ton naTong and Pete!!