This is an old revision of the document!
Table of Contents
Configuración de servidores NTP en el servidor principal (DC):
The list of NTP servers should be specified as a space-delimited list within quotation marks.
Use the following command to configure NTP servers and update the settings:
w32tm /config /update /manualpeerlist:"ar.pool.ntp.org,0x1 time.windows.com,0x1" /syncfromflags:manual /reliable:yes
Después de ejecutar este comando, es necesario reiniciar el servicio de Windows Time para que los cambios surtan efecto:
net stop w32time && net start w32time
Recuerda ejecutar estos comandos en una ventana de comandos con privilegios administrativos.
Deshabilitar la sincronización con el reloj local en los controladores de dominio:
To disable synchronization with the local clock on domain controllers, navigate to the registry key:
HKLM\SYSTEM\CurrentControlSet\Services\W32Time\TimeProviders\VMICTimeProvider
Configuración de servidores NTP en los controladores de dominio:
Load the NTP servers on the domain controllers using the following command:
w32tm /config /update /manualpeerlist:"ar.pool.ntp.org,0x1 time.windows.com,0x1" /syncfromflags:manual /reliable:yes
Reinicia el servicio de w32tm y fuerza la sincronización:
net stop w32time && net start w32time
w32tm /resync /force
Configuración en el resto de los miembros del dominio:
For the remaining domain members, configure synchronization from the hierarchy using the command:
w32tm /config /syncfromflags:DOMHIER /update
Reinicia el servicio:
net stop w32time && net start w32time
Y fuerza la sincronización:
w32tm /resync /force
