Endpoint Protection

 View Only
  • 1.  ram report of all sep client

    Posted Aug 13, 2014 04:53 AM

    Can i able to take the report from sepm that what is the ram running on sep clients?

    Normally from search one by one it show me the detail but for all client i require it.

    endpoint 12.1



  • 2.  RE: ram report of all sep client
    Best Answer

    Posted Aug 13, 2014 04:59 AM

    There is a client inventory report which show the detail.

    About the different types of Symantec Endpoint Protection Manager Reports

    Article:TECH95538  |  Created: 2009-01-14  |  Updated: 2009-01-14  |  Article URL http://www.symantec.com/docs/TECH95538

    Computer Status Reports

     

    Report name Description
    Client Inventory This report consists of the following charts with relative bars that display the total number of computers and percentage of each:
    • Operating System
    • Total Memory
    • Free Memory
    • Total Disk Space
    • Free Disk Space
    • Processor Type


  • 3.  RE: ram report of all sep client

    Posted Aug 13, 2014 05:04 AM

    Please check this.

    Please go through the below article and after all step please save in excel format then you will be able to get information about RAM .

    https://www-secure.symantec.com/connect/articles/how-export-virus-definition-and-client-information-excel-format



  • 4.  RE: ram report of all sep client
    Best Answer

    Posted Aug 13, 2014 05:09 AM

    One SQL  Query

    https://www-secure.symantec.com/connect/articles/compilation-sql-queries-sepm-database

    Hardware and BIOS check - following information is returned:
    ♦ SEP Client computer name
    ♦ IP Address
    ♦ MAC Address
    ♦ Group assignement
    ♦ BIOS Version
    ♦ OS Version
    ♦ Processor Type
    ♦ Processor Count
    ♦ RAM Memory in bytes

    select DISTINCT SC.COMPUTER_NAME,
        SC.IP_ADDR1_TEXT,
        MAC_ADDR1,
        G.NAME "Group Name",
        SC.BIOS_VERSION,
        OPERATION_SYSTEM,
        PROCESSOR_TYPE,
        PROCESSOR_NUM,
        MEMORY
    
    FROM dbo.V_SEM_COMPUTER SC
    INNER JOIN dbo.V_AGENT_SYSTEM_LOG ASL
    ON SC.COMPUTER_ID = ASL.COMPUTER_ID
    INNER JOIN dbo.V_GROUPS G
    ON ASL.GROUP_ID = G.ID
    
    where G.NAME NOT LIKE '%YOUR_VIRTUAL_GROUP_FOR_CLIENTS%'
    AND
    G.NAME NOT LIKE '%YOUR_VIRTUAL_GROUP_FOR_SERVERS%'
    AND
    SC.BIOS_VERSION IN (
        select BIOS_VERSION
        from dbo.V_SEM_COMPUTER
        where BIOS_VERSION like '%INTEL  - 6040000%'
        OR BIOS_VERSION LIKE '%XEN%'
        OR BIOS_VERSION LIKE '%VBOX%'
        OR BIOS_VERSION LIKE '%VRTUAL%'
    )
    order by SC.COMPUTER_NAME
    ;


  • 5.  RE: ram report of all sep client
    Best Answer

    Posted Aug 13, 2014 06:58 AM
    Run the computer status report, export to csv and drop into excel. You'll get your info from here.


  • 6.  RE: ram report of all sep client
    Best Answer

    Broadcom Employee
    Posted Aug 13, 2014 10:07 AM

    Hi,

    Thank you for posting in Symantec community.

    Client inventory report and exported logs from the monitor tab can provide you details about RAM usage.



  • 7.  RE: ram report of all sep client

    Broadcom Employee
    Posted Aug 13, 2014 10:11 AM

    By default now SEPM exports to a comma-delimited file.



  • 8.  RE: ram report of all sep client

    Posted Aug 14, 2014 12:08 AM

    Hello,

    Please update the status.



  • 9.  RE: ram report of all sep client

    Posted Aug 14, 2014 04:55 PM

    Send the OP a private message if your so concerned about status please.