(imported topic written by SystemAdmin)
I need to look for 2 files in different locations and report the mod time if the file exists in one or both locations.
Is this possible?
I can create two analysis properties if need be, I would just prefer to combine them.
What I have so far.
q: if ( exists file "C:\Program Files\BigFix Enterprise\BES Client\besclient.exe") then modification time of file "C:\Program Files\BigFix Enterprise\BES Client\besclient.exe" as string else "<NOT_INSTALLED>"
A: Fri, 13 May 2011 14:54:32 -0500
Need something like this but that works:)
q: if ( exists file "C:\windows\besclient.exe") OR ( exists file "C:\Program Files\BigFix Enterprise\BES Client\besclient.exe") then modification time of file "C:\windows\besclient.exe" as string OR modification time of file "C:\Program Files\BigFix Enterprise\BES Client\besclient.exe" as string else "<NOT_INSTALLED>"
E: A boolean expression is required.
thanks,
Baraq