Can i get a report of time on each workstation
I want to check if the workstation are on same time or in sync.
0 Comments
[ + ] Show comments
Answers (1)
Please log in to answer
Posted by:
jknox
11 years ago
You would need a way to return the time from the system.
You could probably use a custom inventory rule like this to output the time in Windows and compare it to the time the system checked in. It will only be as accurate as the last machine's inventory upload:
ShellCommandTextReturn(time /T)
Otherwise, you would need a command to compare the machine's local time to a NTP server or some other source.
Comments:
-
I agree with Jknox on this. You can report on time zone.
SELECT NAME, TZ_AGENT
FROM MACHINE M
ORDER BY M.NAME - dugullett 11 years ago