Endpoint Protection

 View Only
  • 1.  total clients

    Posted Nov 04, 2012 01:21 AM

    how to see total clients on symantec endpoint protection 11.x ?



  • 2.  RE: total clients
    Best Answer

    Posted Nov 04, 2012 01:40 AM

    If you use a SQL backend server you can run the following script in SQL Server Manager to query the number of clients you have. 

    use sem5
    select name as Countries, count(*) as Clients
    from sem5.sem_client
    left outer join sem5.identity_map on sem_client.domain_id=identity_map.id
    group by name
    order by Clients

    Or

    If you have embedded database

    you can still use the query by opening dbisqlc.exe under "C:\Program Files\Symantec\Symantec Endpoint Protection Manager\ASA\win32" , enter the dba username and password and copy that query to execute.



  • 3.  RE: total clients

    Posted Nov 04, 2012 05:15 AM

    The home page also shows this