What is the best way to set the time on a remote machine remotely? The machine is running Windows XP and is receiving the new time through a web service call. The goal is to keep the remote machines in synch with the server. The system is locked down so that our web service is the only access, so I cannot use a time server on each remote machine.
|
|
I would use Windows built-in internet time abilities. You can set up a time server on your server, have it get time from a 2nd-tier timeserver, and have all your client machines get time from it. I've been down the application-setting-system-time road before. |
||
|
|
|
This is the Win32 API call for setting system time:
I'm not exactly sure how you would get the security worked out such that you could execute that function on the client, though. You can get a lot more detail on setting system time at PInvoke. |
||
|
|
|
|
You could also probably do this in a batch file using some combination of
to set the time, and
to retrieve the time from a server. |
||
|
|
|
|
The way to query a network machine for it's system time is NetRemoteTOD. Here's code to do it in Delphi (a usage example is posted below). Since it relies on Windows API calls, it shouldn't be too different in C#.
And here is the usage example:
|
||
|
