Powershell Posts

SCSM 2012: Deleting Work Items in Bulk in System Center 2012 Service Manager with PowerShell

While unlikely for production, you may want to reset your System Center 2012 Service Manager lab environment by deleting work items in bulk. Here are some Service Requests Get-SCSMClassInstance -Class (Get-SCSMClass -Name System.WorkItem.ServiceRequest) | Where {$_.ID -like “SR*”} | Remove-SCSMClassInstance → Continue Reading.

Continue reading