Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Home / Identity Administration / Computer Administration / Current: Deleting Computers

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

Info

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.


To delete

Delete computers

  1. From the Navigation Sidebar of the EmpowerID Web interface, expand Resources and click ComputersOn 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.
    Image Removed



  4. Click Yes to confirm you want to delete the computer.
  5. Click OK to close the Operation Execution Summary.

To verify the deletion

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

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


  2. A record for the deleted computer is returned.

...