Command to Sync Time
Posted on Nov 26, 2007 under Windows Tips |How to synchronize the time with another computer on the network.
You can syncronize your Windows computer with another computer on the network by using the NET TIME command.
To use this command, open a command prompt and type:
NET TIME \\computername /SET /Y
If you are on a domain, it’s usually standard to synchronize the time with your login server. To do this type:
NET TIME \\%LOGONSERVER% /SET /Y
If you only know the IP address of the computer, you can use that as well:
NET TIME \\192.168.1.1 /SET /Y

Leave a comment