# Fixing “The Computer Did Not Resync Because No Time Data Was Available” Error

Listen to this Post

Struggling with time synchronization issues on Windows? If running `w32tm /resync` gives you the dreaded “no time data available” error, here’s how to resolve it.

🔧 Fix 1: Switch to a Reliable Time Source
Your current time server might be unreachable. Try these steps to reconfigure:

1. Open Command Prompt as Admin.

2. Run these commands one-by-one:

w32tm /unregister 
net stop w32time 
w32tm /register 
net start w32time 
w32tm /config /manualpeerlist:"pool.ntp.org" /syncfromflags:manual /reliable:yes /update 
net stop w32time 
net start w32time 

3. Test synchronization:

w32tm /resync 

Or via Settings > Time & Language.

🛠️ Fix 2: Update Registry Settings

If the error persists, adjust the Windows Time service configuration:

  1. Press Win + R, type regedit, and navigate to:
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Parameters 
    

2. Double-click the Type registry entry.

3. Change its value from NoSync to NTP.

4. Restart your PC and retry synchronization.

You Should Know:

Linux Alternative (NTP Sync)

If you’re working with Linux, use:

sudo apt install ntp -y 
sudo systemctl restart ntp 
ntpq -p # Check sync status 

### **Verify Time Sync in Windows**

w32tm /query /status 
w32tm /query /peers 

### **Force Time Sync Immediately**

w32tm /resync /nowait 

### **Check Windows Time Service Logs**

Get-EventLog -LogName System -Source "W32Time" | Format-List 

## **What Undercode Say**

Time synchronization is crucial for security logs, Kerberos authentication, and distributed systems. If NTP fails, consider:
– Checking firewall rules (netsh advfirewall firewall show rule name=all).
– Using alternative NTP pools (time.nist.gov, time.google.com).
– For Linux, enabling `chronyd` (sudo chronyc sources).
– In PowerShell, debug with:

Test-NetConnection -ComputerName pool.ntp.org -Port 123 

Always ensure the Windows Time service (w32time) is running:

sc query w32time 

## **Expected Output:**

After applying fixes, running `w32tm /resync` should return:

[/bash]

Sending resync command to local computer

Command completed successfully.

[bash]

For further reading:
NTP Pool Project
Microsoft W32TM Docs

References:

Reported By: Fazeelriskhan Windowstips – Hackers Feeds
Extra Hub: Undercode MoN
Basic Verification: Pass ✅

Join Our Cyber World:

💬 Whatsapp | 💬 TelegramFeatured Image