Endpoint Protection

 View Only
  • 1.  ADC Count

    Posted Apr 02, 2018 04:24 AM

    Hi There

    Thenak you for your in advance.....:) 

     

    Please help me in getting the count of SEP Clients installed/ configured with ADC (Application Device Control) 



  • 2.  RE: ADC Count

    Posted Apr 02, 2018 04:42 AM

    You need to do this via SQL query

    Here is a query you can run on your SEPM DB (both SQL Server or Internal Sygate DB users) that will return a list of all your endpoints that are loading the ADC (sysplant) driver when the SEP Agent starts.

    select distinct EVENT_ID, EVENT_TIME, HARDWARE_KEY, HOST_NAME, DESCRIPTION, CALLER_PROCESS_NAME, CALLER_RETURN_MODULE_NAME from V_AGENT_BEHAVIOR_LOG where event_id in ('501', '502')

    https://www.symantec.com/connect/forums/zero-day-flaws-found-symantecs-endpoint-protection-computerworld-article-73014-629am-et#comment-10365321



  • 3.  RE: ADC Count

    Broadcom Employee
    Posted Apr 02, 2018 04:47 AM

    below is the query from Steven Kintakas in the forum https://www.symantec.com/connect/forums/zero-day-flaws-found-symantecs-endpoint-protection-computerworld-article-73014-629am-et#comment-10365321

     

    select distinct EVENT_ID, EVENT_TIME, HARDWARE_KEY, HOST_NAME, DESCRIPTION, CALLER_PROCESS_NAME, CALLER_RETURN_MODULE_NAME from V_AGENT_BEHAVIOR_LOG where event_id in ('501', '502')



  • 4.  RE: ADC Count

    Broadcom Employee
    Posted Apr 02, 2018 01:31 PM

    This thread is still marked "needs solution"- can you update it with any additional updates or questions, or mark it solved if you have your answer?



  • 5.  RE: ADC Count

    Posted Apr 03, 2018 05:13 AM

    Is there any other way to get this from the console itself.



  • 6.  RE: ADC Count
    Best Answer

    Posted Apr 03, 2018 05:24 AM

    No, this is available only via SQL query as of now