This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Dead Client Reporting

Long story short - I just inherited managing Sophos from another department in IT, so I have yet to go through my Sophos training (I just finished scheduling it, it just hasn't happened yet).  I've been going through the help docs, etc.  

What I'd like to do is groom the Sophos Enterprise Console.  Right now there are a lot of clients in the console that aren't reporting in - I realize some of this is normal (laptops, shut-down, etc), but I also know that as computers have been retired and ewasted, they have not been removed from the console.  Is there a way to groom by "last message received from computer" or some other field to weed out the computers that will never check-in again? Or is there some other way of doing this that you know.  

Any help is appreciated! 

:23267


This thread was automatically locked due to age.
Parents
  • To extract a quick list of how many computers haven't reported for a while use:

    sqlcmd -E -S .\sophos -d sophos50 -Q "select name from computersanddeletedcomputers where managed=1 and lastmessagetime<'MM/DD/YYYY'" > C:\nonReportingComputerList.txt

     Change MM/DD/YYYY for a reasonable date (e.g., 01/31/2012 for computers that have stopped reported from 31st January).  Also change the 'sophos50' if you don't have Enterprise Console v.5.0.  To find out what the database name is see article 17323.

    You can safely play with the date and get comfortable with the number of computers returned.  Then, as suggested, use PurgeDB.exe with the -HistoryLengthInDays= option to clear dead endpoints out of the console.  Any computers that you purge, that then do just happen to report in, will pop back into the console.

    :23313
Reply
  • To extract a quick list of how many computers haven't reported for a while use:

    sqlcmd -E -S .\sophos -d sophos50 -Q "select name from computersanddeletedcomputers where managed=1 and lastmessagetime<'MM/DD/YYYY'" > C:\nonReportingComputerList.txt

     Change MM/DD/YYYY for a reasonable date (e.g., 01/31/2012 for computers that have stopped reported from 31st January).  Also change the 'sophos50' if you don't have Enterprise Console v.5.0.  To find out what the database name is see article 17323.

    You can safely play with the date and get comfortable with the number of computers returned.  Then, as suggested, use PurgeDB.exe with the -HistoryLengthInDays= option to clear dead endpoints out of the console.  Any computers that you purge, that then do just happen to report in, will pop back into the console.

    :23313
Children
No Data