WindowsTime: Difference between revisions

From Piszczynski
piszczynski>Aleks
(Created page with " == Windows Time == Time sync issues between servers on a domain can cause many issues including login failures, connection problems, phone system crashes and other random is...")
 
m (4 revisions imported)
 
(3 intermediate revisions by one other user not shown)
Line 1: Line 1:


== Windows Time ==
== Windows Time w32tm==


Time sync issues between servers on a domain can cause many issues including login failures, connection problems, phone system crashes and other random issues.
Time sync issues between servers on a domain can cause many issues including login failures, connection problems, phone system crashes and other random issues.
Line 12: Line 12:


NET TIME /DOMAIN
NET TIME /DOMAIN
Configure w32tm service
check config
*w32tm /query /configuration
Check source
*w32tm /query /source
Configure to get time from domain (PDCe)
*w32tm /config /syncfromflags:domhier /update
== Change TimeZone ==
If the time zone is not able to be changed from the GUI open an admin powershell session and use the following cmdlet:
*set-timezone "GMT Standard Time"

Latest revision as of 22:32, 15 November 2023

Windows Time w32tm

Time sync issues between servers on a domain can cause many issues including login failures, connection problems, phone system crashes and other random issues.


Can use cmd commands to force time to sync:

w32tm /resync

or

NET TIME /DOMAIN

Configure w32tm service

check config

  • w32tm /query /configuration

Check source

  • w32tm /query /source

Configure to get time from domain (PDCe)

  • w32tm /config /syncfromflags:domhier /update

Change TimeZone

If the time zone is not able to be changed from the GUI open an admin powershell session and use the following cmdlet:

  • set-timezone "GMT Standard Time"