I don't know maybe I'm missing something. I've had a probably with my Exchange database availability group and it looks like the underlining problem is a sync issue with the times. I've noticed that one Exchange server is actually sync with the domain controller but the other loses its time.
I've opened an elevated command prompt and would proceed to type the command to sync it with the domain controller:
Text
1 2 3 4 5 6 7 | @Echo Off
net stop "w32time"
w32tm /config /syncfromflags:DOMHIER
net start "w32time"
w32tm /resync
@Echo on
exit
|
It tells me that the service name is invalid and so I tried this with " " and I still get the same message. What am I missing?