Endpoint Protection

 View Only
Expand all | Collapse all

find the low disk systems count

  • 1.  find the low disk systems count

    Posted Apr 23, 2012 04:54 PM

    With the help of symantec server how can i find the low disk systems count?



  • 2.  RE: find the low disk systems count

    Posted Apr 23, 2012 05:02 PM

    Below is the link of tool download that tool and copy on Server. In this tool you can able to find the data of low disk space systems hostname/IP.

    Also it help to show the corrupted system count and hostname or Gup health status.

    https://www-secure.symantec.com/connect/downloads/sep-content-distribution-monitor

    This tool is very helpfull.

    Thanks

    Hemant



  • 3.  RE: find the low disk systems count

    Broadcom Employee
    Posted Apr 24, 2012 01:21 AM

    open SEPM console, goto Clients tab instead of default view, select client system. this will list clients and the drive space available.



  • 4.  RE: find the low disk systems count

    Posted Apr 24, 2012 05:32 AM

    Open reporting console > logs > computer status > choose the appropriate groups & other options > view log

    This log will give you the list of machines with their disk space.



  • 5.  RE: find the low disk systems count

    Posted Apr 24, 2012 05:57 AM

    Additionally to the proposals above, you can use the "Search Clients" feature. E.g., if you want to get all clients with a free disk space lower than 4 GB, you can do the following:

    Clients > Clients tab > Search clients

    Your form should look like this:



  • 6.  RE: find the low disk systems count

    Broadcom Employee
    Posted Apr 24, 2012 06:13 AM

    Thumbs up to Greg12!

    it looks easier way to search clients running low disk



  • 7.  RE: find the low disk systems count

    Posted Apr 25, 2012 09:21 AM

    Hi Hemant,

    I have already this tool but it show only 200 MB systems. I need to find minimum 1GB systems in Single click.



  • 8.  RE: find the low disk systems count

    Posted Apr 25, 2012 09:23 AM

    It will take some time to search and it manually activity



  • 9.  RE: find the low disk systems count

    Broadcom Employee
    Posted Apr 25, 2012 09:50 AM

    then may be check  SEPM console and view the clients and sort by the disk drive space.



  • 10.  RE: find the low disk systems count

    Posted Apr 25, 2012 11:20 AM

    All methods presented here are doing the same -- searching the SEPM database. I don't believe there are big differences.



  • 11.  RE: find the low disk systems count
    Best Answer

    Posted Apr 28, 2012 07:02 AM

    Hi

    I have one query which you can use in (https://www-secure.symantec.com/connect/downloads/sep-content-distribution-monitor) that help you to find the hostname and diskspace size in single click from your sep DB...

    Query

    SELECT computer_name, AGENT.FREE_DISK/1048576 from SEM_AGENT as AGENT LEFT OUTER JOIN V_SEM_COMPUTER as COMP ON AGENT.COMPUTER_ID = COMP.COMPUTER_ID LEFT OUTER JOIN IDENTITY_MAP as ID_MAP ON ID_MAP.ID = AGENT.GROUP_ID where AGENT.FREE_DISK/1048576 < 1000 (you can able to change the last value 1000 as per you want)

    Below link for SQL Query

    https://www-secure.symantec.com/connect/forums/require-some-sql-coding#comment-6343681

     

    Hope it can help you.