SCCM: Delete Old or Expired Client Operations Entries
Microsoft Endpoint Configuration Manager (MEMCM) Admin Console Location:
\Monitoring\Overview\Client Operations
Here’s the Solution Straight Away:
In Your ConfigMgr admin console, connect to your site via PowerShell and run the following script as a one-liner:
Foreach($cmopentry in Get-CMClientOperation) { If ($cmopentry.IsExpired -eq 1) { Remove-CMClientOperation -Id $cmopentry.ID -Force } }
The script will take several minutes to execute if you have a lot of entries,, so be patient with it.
More From Craig
Co-Management Intune Error: Configuration Missing, Error 401
Public sector systems admin, specializing in device management, mobility and deployment. Let's say you recently turned on Tenant Attach and Co-Management for your tenant, and you're excited to run SCCM commands from your Intune web interface. But when you try to run a...
Intune Win32 App Deployment Guide: Preparing .intunewin Files
Public sector systems admin, specializing in device management, mobility and deployment. Microsoft seems to be pushing us towards Win32 apps over Line-of-Business Apps. However, Win32 apps are in .intunewin format, which require a few extra steps. Let's go over a...
Co-Management MDM Enroll Error: Device Credential (0x0), Failed (Unknown Win32 Error code: 0xcaa9001f)
Public sector systems admin, specializing in device management, mobility and deployment. I recently setup an SCCM Co-Management home lab. When testing the MDM enrollment to Intune of an AD-joined device, I ran into a 0xcaa90014 error. The failure showed up in two...