Hi all,
With regards to the below property relevance which checks for modified files within the last 24 hours from different specified filesystems and subdirs.
Q: ((pathname of it & " ( " & modification time of it as string & " )") of files whose (modification time of it > now - 24hour and ((name of it as lowercase ends with ".exe") or (name of it as lowercase ends with ".sys") or (name of it as lowercase ends with ".dll") or (name of it as lowercase ends with ".ocx"))) of (system folder; descendant folders of system folder)) ; ((pathname of it & " ( " & modification time of it as string & " )") of files whose (modification time of it > now - 24hour) of (folder it; descendant folders of folder it) of ("c:\inetpub"; "e:\inetpub"; "c:\windows\sysvol"; "e:\windows\sysvol") whose (exists folder it)); ((pathname of it & " ( " & modification time of it as string & " )") of files whose (modification time of it > now - 24*hour and ((name of it as lowercase = "machine.config"))) of (folder it; descendant folders of folder it) of ("c:\windows\``microsoft.net``"; "") whose (exists folder it))
T: 10286.854 ms
This has a evaluation frequency of 12 hours. It evaluates fine and returns results for some machines, but unfortunately returns with "Inspector interrupted" for some. From reading through other forum posts it seems that this kind of use case for relevance is not advisable, due to the fact that it scans through a lot of folders and subfolders, which takes too much time and results to being interrupted/timed out.
Would it be advisable to utilize _BESClient_Resource_InterruptSeconds on the machines involved and set it with a value greater than default? When running the relevance through fixlet debugger the eval time is approx 9k to 10k ms.
Would appreciate any feedback and suggestions.