有什么方法可以确定WindowsTimeSync(Internet时间)是否处于活动状态,或者不使用C#?

时间:2018-07-17 11:09:05

标签: c#

我能够找到LastTimeSync,但无论设置是否启用,都找不到。

 ProcessStartInfo psi = new ProcessStartInfo("w32tm"," /query /status");
            psi.UseShellExecute = false;
            psi.RedirectStandardOutput = true;
            psi.CreateNoWindow = true;
            var proc = System.Diagnostics.Process.Start(psi);
            string s = proc.StandardOutput.ReadToEnd();
            s = s.Substring(s.LastIndexOf("Last"));
            s = s.Remove(s.LastIndexOf("Source"));

0 个答案:

没有答案