c# – 使用.NET代码将系统时间同步到域控制器

前端之家收集整理的这篇文章主要介绍了c# – 使用.NET代码将系统时间同步到域控制器前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有基于时间的测试运行,需要在测试期间多次更改系统时间.我希望能够在测试结束时将时间重新同步到域控制器时间.我有任何方法可以使用.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();
    }
}
原文链接:https://www.f2er.com/csharp/98342.html

猜你在找的C#相关文章