Do you not have access to google ? ?
anyway here are a couple of solutions:
Heres the fix:
Make a batch file within Windows that contains the following 4 lines:
@echo off
net time /setsntp:tick.usno.navy.mil
net stop w32time
net start w32time
how to make a batch file if you dont know: open Notepad, paste the following lines then save as synctime.bat, or whatever.bat
doesnt really matter as long as you have the .bat extension.
Then add the batch file to your startup folder in your Start menu so that it starts whenever windows starts up.
This works perfectly on my MacBook Pro.
I cant take credit for it, though.. I found it on a forum somewhere.
or:
Heres what I do.
In Windows I have a startup script that will adjust the time zone to your local time, and a shutdown script that will return the time zone to GMT.
RunDLL32 shell32.dll,Control_RunDLL %SystemRoot%\system32\TIMEDATE.cpl,,/Z Greenwich Standard Time
Er thats the shutdown script. To locate your timezone regedit and find HKLM\Software\Microsoft\Windows NT\CurrentVersion\Time Zones, looking for the key name of your time zone (may not be the time shown in the time zones control of windows). Im a Singaporean, hence
RunDLL32 shell32.dll,Control_RunDLL %SystemRoot%\system32\TIMEDATE.cpl,,/Z Singapore Standard Time
You know youve got it wrong when Windows prompts you to choose your time zone in a window.