Calling or Serving Timers not starting from zero? Not a problem! We have the right solution for you Calling or Serving Timers not starting from zero? Not a problem! We have the right solution for you

Calling or Serving Timers not starting from zero? Not a problem! We have the right solution for you

Alek Alek
To synchronize the date and time in Windows using the Command Prompt, follow these steps:
  • Open Command Prompt as an administrator:
    • Type cmd in the Windows search bar.
    • Right-click on "Command Prompt" and select "Run as administrator."
  • Force a time synchronization:
    • In the elevated Command Prompt, type the following command and press Enter:
Code
 
        w32tm /resync
  • If successful, you will see a message indicating that the command completed successfully.
Troubleshooting (if the above fails):
If you encounter an error message like "The service has not been started," indicating that the Windows Time (W32Time) service is not running or needs to be reset, you can use the following commands to reset and restart the service: Stop the Windows Time service.
Code
 
    net stop w32time
Unregister the Windows Time service.
Code
 
    w32tm /unregister
Register the Windows Time service.
Code
 
    w32tm /register
Start the Windows Time service.
Code
 
    net start w32time
Force a time synchronization again.
Code
 
    w32tm /resync
This sequence of commands will stop, unregister, re-register, and then restart the Windows Time service, followed by a forced resynchronization of the system time with an internet time server.
 
For any additional assistance please reach out to our Support team. How do I get in touch with Qtrac Help Desk?