C# Winform小程序:局域网设置NTP服务器、实现时间同步
- 设置NTP服务器:
NTP是网络时间协议(Network Time Protocol),它是用来同步网络中各个计算机的时间的协议。
局域网不能连接Internet,可以设置一台计算机为NTP服务器。
- 依次点击:开始---运行---regedit,进入注册表;
- 依次展开:HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\TimeProviders\NtpServer,在NtpServer项右侧键值Enablied,默认值0改为1,1为启动NTP服务器;

- 依次展开:HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Config,在Config项右侧键值AnnounceFlags,默认值10改为5,5代表自身为可靠时间源;

- 修改完成以上关闭注册表;
- 命令行输入:net stop w32Time,回车,停止NTP服务;
- 命令行输入:net start w32Time,回车,启动NTP服务;
- 当前计算机设置NTP服务器完成。
- 局域网内其他电脑命令行输入:net time \\10.30.100.119 /set /yes,实现时间同步,其中10.30.100.119代表NTP服务器地址。
- C# Winform实现局域网时间同步demo:
全局变量:
//Timer
System.Timers.Timer timer = new System.Timers.Timer();
//IP
private string ipAddress;
//时间间隔
private int timeInterval;
//创建bat文件路径,如果存在,直接覆盖
private string filePath = System.Environment.CurrentDirectory + @"\timesync.bat";
页面Load方法:
private void FrmMain_Load(object sender,EventArgs e)
{
//运行标志隐藏
picRun.Visible = false;
}
Run/Abort按钮点击事件:
private void btnRunAbort_Click(object sender,EventArgs e)
{
//IP
ipAddress = txtIP.Text.Trim();
//Time Interval
timeInterval = Convert.ToInt32(txtTimeInterval.Text); if (btnRunAbort.Text.Equals("开始同步"))
{
this.RunTimer();
}
else if (btnRunAbort.Text.Equals("停止同步"))
{
//定时器停止
timer.Stop();
timer = new System.Timers.Timer(); MessageBox.Show("停止同步成功","提示"); //运行标志隐藏
picRun.Visible = false;
btnRunAbort.Text = "开始同步";
}
}
开始同步执行方法:
public void RunTimer()
{
//创建bat文件
FileStream fs = new FileStream(filePath, FileMode.Create,FileAccess.Write);
StreamWriter sw = new StreamWriter(fs);
sw.WriteLine(string.Format(@"net time \\{0} /set /yes",ipAddress));
sw.Close();
fs.Close(); try
{
//执行时间超过10秒,强制结束
if (!CallWithTimeOut(CommonRun,))
{
MessageBox.Show("服务器异常!","提示");
return;
}
//服务器地址异常
if (StringRun().EndsWith(@"/yes"))
{
MessageBox.Show("服务器异常!","提示");
return;
} MessageBox.Show("开始同步成功!","提示");
//BeginInvoke
SetPBState(true , "停止同步");
}
catch (Exception ex)
{
MessageBox.Show("服务器异常!","提示");
return;
} //timer定时器执行时间同步
timer.Elapsed += new System.ElapsedEventHandle(TimerRun);
timer.Enabled = true;
timer.Interval = Convert.ToInt32(txtTimeInterval.Text) * ;
timer.Start();
}
时间同步,返回执行bat输出:
private string StringRun()
{
ProcessStartInfo pro = new ProcessStartInfo("cmd.exe");
pro.UseShellExecute = false;
pro.RedirectStandardOutput = true;
pro.RedirectStandardError = true;
pro.CreateNoWindow = true;
pro.FileName = filePath;
pro.WorkingDirectory = System.Environment.CurrentDirectory;
Process proc = new Process.Start(pro); StreamReader sOutput = proc.StandardOutput;
proc.Close(); string sJudge = sOutput.ReadToEnd().Trim();
sOutput.Close(); return sJudge;
}
时间同步:
private void CommonRun()
{
ProcessStartInfo pro = new ProcessStartInfo("cmd.exe");
pro.UseShellExecute = false;
pro.RedirectStandardOutput = true;
pro.RedirectStandardError = true;
pro.CreateNoWindow = true;
pro.FileName = filePath;
pro.WorkingDirectory = System.Environment.CurrentDirectory;
Process proc = new Process.Start(pro); StreamReader sOutput = proc.StandardOutput;
proc.Close(); string sJudge = sOutput.ReadToEnd().Trim();
sOutput.Close();
}
timer定时器时间同步:
private void TimerRun(object source , System.Timers.ElapsedEventArgs e)
{
ProcessStartInfo pro = new ProcessStartInfo("cmd.exe");
pro.UseShellExecute = false;
pro.RedirectStandardOutput = true;
pro.RedirectStandardError = true;
pro.CreateNoWindow = true;
pro.FileName = filePath;
pro.WorkingDirectory = System.Environment.CurrentDirectory;
Process proc = new Process.Start(pro); StreamReader sOutput = proc.StandardOutput;
proc.Close(); string sJudge = sOutput.ReadToEnd().Trim();
sOutput.Close();
}
deletegate InvokeRequired:
delegate void DelegatePBUpdate(bool b , string btnText); public void SetPBState(bool b , string btnText)
{
if (this.InvokeRequired)
{
this.BeginInvoke(new DelegatePBUpdate(SetPBState), new object[] {b , btnText});
}
else
{
picRun.Visible = true;
btnRunAbort.Text = "停止同步";
}
}
方法执行时间超过设定值,强制结束:
static bool CallWithTimeout(Action action, int timeoutMilliseconds)
{
Thread threadToKill = null;
Action wrappedAction = () =>
{
threadToKill = Thread.CurrentThread;
action();
} IAsyncResult result = wrappedAction.BeginInvoke(null, null);
if (result.AsyncWaitHandle.WaitOne(timeoutMilliseconds))
[
wrappedAction.EndInvoke(result);
return true;
]
else
{
threadToKill.Abort();
return false;
}
}
- 运行结果:


C# Winform小程序:局域网设置NTP服务器、实现时间同步的更多相关文章
- visual studio 设计第一个WinForm小程序
WinForm小程序之消息框 首先打开visual studio 软件,然后[文件]-[新建]-[项目]-[Visual C#]-[Windows],选择Windows窗体应用程序,根据自己的需要修改 ...
- 如何在 CentOS 中设置 NTP 服务器
网络时间协议(NTP)用来同步网络上不同主机的系统时间.你管理的所有主机都可以和一个指定的被称为 NTP 服务器的时间服务器同步它们的时间.而另一方面,一个 NTP 服务器会将它的时间和任意公共 NT ...
- 微信小程序wxss设置样式
微信小程序wxss设置样式 对于以前搞客户端开发的来说,有着客户端的逻辑,就是不知道怎么设置样式,把对应的控件显示出来 一.wxml 界面结构wxmL比较容易理解,主要是由八大类基础组件构成: 一.视 ...
- C# WinForm小程序(技术改变世界-cnblog)
WinForm小程序(技术改变世界-cnblog) 需求: 1.点击按钮 更新 当前时间 2.输入 身份证,必须身份证 排序(类似银行卡那样的空格),自动生成空格排序 3.实现 必须按 第一个按 ...
- 微信小程序警告设置 enable-flex 属性以使 flexbox 布局生效的解决办法
微信小程序警告设置 enable-flex 属性以使 flexbox 布局生效的解决办法 具体情况: scroll-view 滚动,设置 display:flex 不生效并警告设置 enable-fl ...
- CentOS 7.2部署NTP服务器实现时间同步
CentOS 7.2部署NTP服务器实现时间同步 [日期:2017-12-18] 来源:Linux社区 作者:梁明远 [字体:大 中 小] 1. 前言 对于容器编排系统,前段时间主要研究kube ...
- 部署NTP服务器进行时间同步
NTP服务端:linl_S IP:10.0.0.15 NTP客户端:lin_C IP:10.0.0.16 NTP服务概述 1.原理 NTP(Network TimeProtocol,网络时 ...
- 微信小程序如何设置服务器配置
最近微信小程序在it界火了起来,公司也要求我们开始接触微信小程序,废话不多说直接从配置微信小程序开始 1,首先,登录 https://mp.weixin.qq.com,(这里默认你已经获取到微信小程序 ...
- 微信小程序-关于post 过来服务器没有获取到数据问题
查看一下服务器接收的post 参数是以什么形式接收的 微信给出得demo 请求的方式是Json 参数传递的 所以如果服务器使用的from 表单形式接收数据需要更改微信小程序中的 header 将 he ...
随机推荐
- 51 nod 1350 斐波那契表示
每一个正整数都可以表示为若干个斐波那契数的和,一个整数可能存在多种不同的表示方法,例如:14 = 13 + 1 = 8 + 5 + 1,其中13 + 1是最短的表示(只用了2个斐波那契数).定义F(n ...
- javascript中var that=this
在JavaScript中,this代表的是当前对象. $(‘#conten').click(function(){ //this是被点击的#conten var that = this; $(‘.co ...
- 八大排序算法的python实现(五)堆排序
代码 #coding:utf-8 #author:徐卜灵 # 堆排序适用于记录数很多的情况 #与快速排序,归并排序 时间复杂一样都是n*log(n) ######################### ...
- XAF ORMDataModel构建的基础资料对象无法被调用显示的解决办法
修正,其实只要在基础资料类中加入[XafDefaultProperty("名称")]标签即可. namespace NEO.ERP.Module.BusinessObjects.B ...
- ansible基本模块-cron
ansible XXX -m cron -a "name=‘XXX ’ job=‘执行的命令’ minute=XXX " ...
- flex布局浅谈
flex布局浅谈和实例 阿基米德曾说给我一个支点我可以撬动地球,而拥有flex基本可以撬动所有的布局. 1.flex布局基本介绍及效果展示 工欲善其事必先利其器,来来来,一起看下基础知识先(呵~,老掉 ...
- 基于JsonPath和XmlPath的对象映射(Object Mapping)
rest-assured支持映射Java对象到Json和XML以及从Json和XML中映射到Java对象.Json映射需要在classpath 中有Jackson.Jackson 2或者是Gson,X ...
- 【算法笔记】B1041 考试座位号
1041 考试座位号 (15 分) 每个 PAT 考生在参加考试时都会被分配两个座位号,一个是试机座位,一个是考试座位.正常情况下,考生在入场时先得到试机座位号码,入座进入试机状态后,系统会显示该考生 ...
- Mysql 忘记密码----修改Navicat的连接密码--以及--(加入安装Navicat时没设置密码)有时新建连接设置密码,连接不成功---的问题解决方法
密码忘记的解决 可以参考http://jingyan.baidu.com/article/454316ab4e9e65f7a7c03ad1.html 1.安装路径(复制安装路径) 2.打开cmd命令提 ...
- pip安装时的异常,找不到lib2to3\\Grammar.txt
[From] http://jahu.iteye.com/blog/2353325 异常 : [Errno 2] No such file or directory: 'd:\\python\\pyt ...