Delete Computers

EmpowerID allows you to manage the computer objects in your connected directories. This topic demonstrates how to delete computer accounts.

The EmpowerID workflow used to delete computer accounts is the DeleteComputerBulk workflow. To run the workflow, users need to have the Initiator Access Level for it.

Delete computers

  1. On the navbar, expand Privileged Access and select Computers.

  2. Select the Computers tab.

  3. Search for the computer you want to delete, click the record for that computer to select it and then click the Delete Computers action link.

     

  4. Click Yes to confirm you want to delete the computer.

     

  5. Click OK to close the Operation Execution Summary.

Verify the deletion

  1. On a server with the Active Directory PowerShell Module, run the below PowerShell cmdlet. The cmdlet returns all deleted computers.

    Get-ADObject -Filter { ObjectClass -eq "computer" -AND IsDeleted -eq $True} -IncludeDeletedObjects -Properties IsDeleted,LastKnownParent,DistinguishedName

     

  2. You should see a record for the deleted computer returned.