Link to home
Start Free TrialLog in
Avatar of ehrlichan
ehrlichan

asked on

Internet Time - even though on domain

I am on a domain, i do not log on or log off ever.  for one reason or another i cannot.  my clock always runs slow, i want to use the native windows xp internet time to sync my clock.  

how do i override it so i can use it while being on a domain..

i do not want third party software..

thanks in advance.!
Avatar of blohrer
blohrer
Flag of United States of America image

If you are on a domain, your machine should be synching with the domain controller on the domain.  If the domain is setup properly, the domain controllers should be synching with NTP servers on the internet

at a cmd prompt type

net time

You should get a response like the following

H:\>net time
Current time at \\domaincontrollername is 2/9/2006 10:27 AM

Local time (GMT+11:00) at \\domaincontrollername is 2/10/2006 2:27 AM

The command completed successfully.

if the times don't match you can type

net time /set

and then synch with your domain controller.

Bill

Avatar of ehrlichan
ehrlichan

ASKER

the only problem is that i am told by out network admin that it will only sync once i log in or out.  i do not so it never syncs.
ASKER CERTIFIED SOLUTION
Avatar of fixer64
fixer64

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Avatar of giltjr
giltjr
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Follow up:

at cmd prompt:

type "net start schedule"  If you get an answer that the service is already started, ignore it.

type AT time "command"

example:

c:\at 06:30 "w32tm /resync" /every:day
fixer's solution should do what you're asking for.

However, if you would like a little more functionality (like being able to make you own computer a time server), AboutTime is a very popular Windows based time synching program.  Using the right time server, your time may even be more accurate than that of your domain controller ;)

http://www.arachnoid.com/abouttime/
If your machine is a domain member of an Active Directory domain: synchronize ONLY with your DC (which is the default setting for domain members anyway). In order for the logon to work, the time on your machine and the time on the DC may not differ for more than 5 minutes; it doesn't matter at all if "your" time is more accurate than your DC's.
The time service on XP will synchronize the time automatically, even if nobody is logged on, or if a user is logged on all the time.
Open a command prompt, enter
net time /querysntp
This should result in something like "This machine is not configured to use a special SNTP server" (or similar, not using an English version). If it's not, enter
net time /setsntp
net stop w32time
net start w32time
which should reset the time synchronization to the default settings (that is, automatically synchrone with the authenticating DC).

If it's an NT4 domain: you can set your time basically to whatever you feel like setting it to, at least as far as logons are concerned.
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial