I want to sync my client machine with Linux NTP server.if client and Server time miss match found then reset date and time automatically and that time fire a mail.i am trying to write but its not working properly. here i am share my script

net start w32time
if (%errorlevel%)==(0) echo Time service started successfully. >> c:\systemtime.txt
if (%errorlevel%)==(2) echo Time service is already running. >> c:\systemtime.txt
net time /setsntp:172.16.0.210 /YES
if (%errorlevel%)==(0) echo System Time Synced successfully with time server.>> c:\systemtime.txt
if (%errorlevel%)!==!(0) echo Unable to sync system time with time server. Please sync it manually. >> c:\systemtime.txt
systeminfo | findstr /C:"Time Zone" >> c:\systemtime.txt
echo Current System TIme:%TIME% >> c:\systemtime.txt

If any change required kindly share with me and if anyone has other script for same thing please also share.

Thanks in advance.

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.