Just wondering what is the best way to handle an alert from BigFix for a laptop that has gone missing/stolen.
Since I have the serial number and name that report from BigFix should I generated a scheduled report with relevence that looks for a match on the serial number and a report time of anytime since it was stolen? Not exactly sure of the relevence on the date portion.
As I have a relay in the dmz the theory is that if the client ever checks in again inside/outside our network I can get an alert and track it’s ip/network and report to the proper authorities or wipe it, etc.
I’m always disappointed to find the my thieves are smart enough not to place the stolen laptop on the Internet. One of these days though - I’ll get an amateur . Good luck - let us know if you get one to report back in.
Is there a way to do the same type of search for custom properties? I’m able to find core properties ie OS, DNS name, IP Address, etc. However, I can’t do the same type of search with custom properties, ie DPB MAC Address, SerialNumber, etc.
I’ve verified that the customer properties do exist in webreports via
That should work… It is possible that not every agent has a SerialNumber returned so it might throw an error in that case… You can make a simple change and add “s” for “value” -> “values”, which effectively will remove the error and skip the computers that don’t have a SerialNumber returned.
exists computer of (results (bes property “SerialNumber”, bes computers)) whose (exists value whose (it = “1234567”) of it)
However, I’m having a hard time adding
AND Last Report Time of it > “12 Jun 2008 14:52:02 -0700” as time
When I check
exists computer of (results (bes property “SerialNumber”, bes computers)) whose (exists value whose (it = “1234567”) of it) AND Last Report Time of it > “12 Jun 2008 14:52:02 -0700” as time
I get the error “It” used outside of “whose” clause.
exists computer whose ( last report time of it > “12 Jun 2008 14:52:02 -0700” as time) of (results (bes property “SerialNumber”, bes computers)) whose (exists value whose (it = “1234567”) of it)