Problem scenario
You are trying to correct the time of your Windows machine. You run “w32tm /resynch”, but you get “The following error occurred: The service has not been started. (0x80070426)”. What should you do?
Solution
- Open PowerShell as administrator.
- Run these five commands:
net stop w32time
w32tm /unregister
w32tm /register
net start w32time
w32tm /resync /nowait
If you wanted a non-PowerShell method,
…
Continue reading “How Do You Use PowerShell to Correct the Time on Your Windows Machine?”