I have time based tests to run that require changing the system time multiple times during the test. I want to be able to resync the time to the domain controller time at the end of the test. I there any way to do that using .NET code (C#). I am changing the time using the p-invoke function found in:

http://stackoverflow.com/questions/204936/set-time-programmatically-using-c

Thanks

link|improve this question

80% accept rate
feedback

4 Answers

up vote 7 down vote accepted

One easy way would be to launch a process and run the NET TIME command (copied from http://blogs.msdn.com/sanket/archive/2006/11/02/synchronizing-machine-time-with-domain-controller.aspx)

using System;
using System.Diagnostics;
class Program
{
    static void Main(string[] args)
    {
        Process netTime = new Process();

        netTime.StartInfo.FileName   = "NET.exe";
        netTime.StartInfo.Arguments = "TIME /domain:mydomainname /SET /Y";
        netTime.Start();
    }
}
link|improve this answer
+1. This is exactly what I was writing up, you just beat me to it. Nice one. – Simon P Stevens Sep 24 '09 at 15:10
feedback

As an addition to the other answers:

You should seriously consider making the notion of "current time" somehow injectable into your system. Directly reading from the system clock is very problematic (even when running the app), precisely because it is global state.

link|improve this answer
1  
That was definately my first option, to do something like in the following post stackoverflow.com/questions/43711/… Unfortunately, I am working with a platform solution that does not give me access to doing such a thing. It's either this, or not do regression testing, and I don't like the alternative. – helios456 Sep 25 '09 at 13:59
feedback

You can do this using the command line tool w32tm:

w32tm /resync

This is neither C# nor .NET, but it hopefully fits your requirements.

link|improve this answer
feedback

The easiest way would be to use System.Diagnostics.Process to run a net time command with the appropriate parameters to sync back to your DC.

Run this from a command prompt to see what I'm talking about:

net time /?
link|improve this answer
Soory for the double post, Justin beat me to it. – ParmesanCodice Sep 24 '09 at 15:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.