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
Intune: “Available” Win32 App Deployments Now Work With Device Groups
Public sector systems admin, specializing in device management, mobility and deployment. If your organization is using app deployments set to "Available" instead of "Required", Microsoft's docs say it only works when targeted to user groups. However, Twitter user...
Intune: Beware, Delegated Admins Can Still Enable Global Windows Hello For Business Settings
Public sector systems admin, specializing in device management, mobility and deployment. This post will show: Where Global Settings For Windows Hello For Business Can Be Set Why Its Current Setup is a Big Problem For Less-Centralized Organizations The Workaround For...
Intune Community Tool: Intune Tool Box by Jannik Reinhard
Public sector systems admin, specializing in device management, mobility and deployment. This post will show: An Intro to the Intune Tool Box What it can do My experience trying it Documentation: Blog Post Jannik's blog post about this tool. The Idea is Sound......