我有基于时间的测试运行,需要在测试期间多次更改系统时间.我希望能够在测试结束时将时间重新同步到域控制器时间.我有任何方法可以使用.NET代码(C#).我正在使用在以下位置找到的p调用函数来更改时间:
Set time programmatically using C#
谢谢
解决方法
一种简单的方法是启动进程并运行NET TIME命令(从
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(); } }