IMPORTANT ANNOUNCEMENT: On May 6, 2024, Carbon Black User eXchange (UeX) and Case Management will move to a new platform!
The Community will be in read-only mode starting April 19th, 7:00 AM PDT. Check out the blog post!
You will still be able to use the case portal to create and interact with your support cases until the transition, view more information here!

App Control: How to Restore an Accidentally Deleted Endpoint in the Console

App Control: How to Restore an Accidentally Deleted Endpoint in the Console

Environment

  • App Control Console: All Supported Versions

Objective

Endpoint was removed from console by mistake

Resolution

Any endpoint that has been deleted from the console will automatically be added back the next time it reconnects to the server
To restore a disconnected endpoint that was accidentally deleted you can:
  1. Verify which is the deleted computer in the database with the following query (replace 'COMPUTERNAME' with the name of the deleted agent):
    use das; select host_id, hostname, date_deleted from dbo.hostmain where hostname like '%COMPUTERNAME%' and deleted=1 
    
  2. Restore the deleted computer using the value for 'host_id' returned in the previous query: 
    use das; UPDATE dbo.hostmain SET deleted=0, delete_date=NULL WHERE host_id = 'host_id'
    

Related Content


Labels (1)
Tags (2)
Was this article helpful? Yes No
No ratings
Article Information
Author:
Creation Date:
‎04-30-2021
Views:
1039
Contributors