Symantec Intelligent Updater

(imported topic written by SystemAdmin)

Hello,

I want to run the Symantec Intelligent Updater once a week to updateSymantec clients that have definition files older than two weeks. I am not sure how to create the relevance so that I don’t have to keep chnaging the definition date.

(imported comment written by brolly3391)

Hi pschwarz,

Check out the time interval information in the inspector help files.

here is an example that returns true if the modification time of your boot.ini file is more than 2 weeks old.

q: (now - (modification time of file “c:\boot.ini”)) > 2*week

You can also do math with the time interval objects.

q: 1week + 3day

A: 10 days

T: 0.087 ms

I: singular time interval

q: (1week + 14day)/minute

A: 30240

T: 0.100 ms

I: singular integer

Cheers,

Brolly