Lo intenté:
w32tm /query /status
Tengo:
The command /query is unknown.
En una máquina diferente, tengo:
The following error occurred: The service has not been started. (0x80070426)
Entonces lo intenté:
reg QUERY [\machine\]HKLM\SYSTEM\CurrentControlSet\Services\W32Time
Tengo:
ERROR: The system was unable to find the specified registry key or value.
Entonces lo intenté: En otra máquina, recibí la página de ayuda, diciendo también:
net time /querysntp
Entonces, básicamente, el servicio no estaba funcionando. Siguiendo estas instrucciones, hice:
This computer is not currently configured to use a specific SNTP server.
Finalmente, todo lo anterior funcionaría. (nota: si net start
falla, ver abajo) Entonces sólo necesitaba configurar mi ntp… Lo hice con:
The /QUERYSNTP and /SETSNTP options have been deprecated. Please use w32tm.exe to configure the Windows Time Service.
siguiendo las instrucciones de aquí , pero quizás podría haber sido tan fácil como:
w32tm /unregister
w32tm /unregister
w32tm /register
net start w32time
como se indica aquí . (10.0.0.5 es mi servidor NTP local). Si no estás usando un servidor NTP local, puedes usar el genérico:
w32tm /config /manualpeerlist:10.0.0.5 /syncfromflags:manual /reliable:yes /update
Finalmente, podrías necesitar hacer lo siguiente, que no era necesario para mí:
net time /setsntp:10.0.0.5
NOTA: si net start w32time
falla con el error 1290 (El inicio del servicio falló ya que uno o más servicios en el mismo proceso tienen un ajuste de tipo de SID de servicio incompatible) entonces siga los pasos aquí :
w32tm /config /manualpeerlist:pool.ntp.org /syncfromflags:manual /reliable:yes /update
Luego siga como se indica arriba.
NOTA 2: si el servicio NTP no se inicia automáticamente al reiniciar, puede deberse a su configuración de inicio, como se describe aquí : dependiendo de sus ventanas, puede estar configurado para iniciarse sólo cuando se une a un dominio. Puedes comprobarlo con:
w32tm /config /update
w32tm /resync /rediscover
Si está configurado para iniciarse cuando te unes a un dominio, y no tienes un dominio configurado en tu máquina, no iniciará el servicio y establecerá la hora. Es probable que no se una a un dominio porque no quieres que lo haga. En cualquier caso, cambia el disparador que lo inicia. Por ejemplo, para iniciar cuando la máquina tiene red (y por lo tanto puede acceder al servidor), haga:
w32tm /unregister
w32tm /register
sc config w32time type= own
net start w32time