2

I am attempting to create an 'end of life' task sequence for leased machines, and I would like to add an element to the sequence that removes the system from all collections (effectively removing it from SCCM). Is this possible?

HopelessN00b
  • 53,795
  • 33
  • 135
  • 209

1 Answers1

2

I have confirmed the following works in sccm 2012:

Remove-CMDevice -DeviceName "$ComputerName" -Force

There is also an option for deviceID as well, I should mention that is a powershell cmdlet.

http://technet.microsoft.com/en-us/library/jj821759.aspx

MDMoore313
  • 5,581
  • 6
  • 36
  • 75