Sometimes it is possible that the time on your server's internal clock does not show the correct time. This is very easy to solve by following these instructions.
We can check the clock status in Windows with this command in the Console (remember to open it as Administrator):
w32tm /query /status
It will show us information of the Windows clock, if it is out of date, when was the last time it was updated, etc.
We can synchronize the clock in the following way:
w32tm /resync
This way we should have the Windows server time synchronized again with Windows Time Service.
You can also stop the service and restart it:
net stop w32time net start w32time