Hi Reader, here is martin 🙂
have you installed the new Service Pack for your infrastructure?
Was you lazy as me when you have installed the Hotfixes for R2, you did not delete the old ones?
Now you have more than 10 Packages in you Config Manager Hotfix Folder?
You don’t want to delete them manually thorugh the console?
Just use this small PoSh command to remove all Hotfix Packages (mind to delete the Folder on your CM Installation):
Get-CMPackage | where{$_.pkgsourcepath -like "*SMS_S01\hotfix*"} | Remove-CMPackage
Hope this helps, Martin