Retire Multiple Applications in SCCM Using PowerShell
Managing applications in SCCM (ConfigMgr) can become time-consuming when you need to retire multiple apps one by one. To simplify this process, you can use a PowerShell script that reads application names from a text file and retires them automatically.
This script uses the Suspend-CMApplication cmdlet to retire each application listed in applist.txt. It’s a fast and efficient way to bulk-retire applications—perfect for cleanup tasks, environment restructuring, or decommissioning outdated software.
PowerShell Script: Retire Applications
Suspend-CMApplication -Name $applicationname
PowerShell Script: Retire Applications in Bulk
No comments:
Post a Comment