C# 修改系统时间
标签:sdn class port 技术 syn 管理员 cond imp fill
///
/// 同步服务时间
///
public class SyncServerTime
{
//设置系统时间的API函数
[DllImport("kernel32.dll")]
private static extern bool SetLocalTime(ref SYSTEMTIME time);
[StructLayout(LayoutKind.Sequential)]
private struct SYSTEMTIME
{
public short year;
public short month;
public short dayOfWeek;
public short day;
public short hour;
public short minute;
public short second;
public short milliseconds;
}
///
/// 设置系统时间
///
/// 需要设置的时间
/// 返回系统时间设置状态,true为成功,false为失败
public static bool SetDate(DateTime dt)
{
SYSTEMTIME st;
st.year = (short)dt.Year;
st.month = (short)dt.Month;
st.dayOfWeek = (short)dt.DayOfWeek;
st.day = (short)dt.Day;
st.hour = (short)dt.Hour;
st.minute = (short)dt.Minute;
st.second = (short)dt.Second;
st.milliseconds = (short)dt.Millisecond;
bool rt = SetLocalTime(ref st);
return rt;
}
}
运行中如果是返回false。
经过研究发现原来时我的程序运行在win8系统上需要管理员权限,然后程序作如下配置即可:
C# 修改系统时间
标签:sdn class port 技术 syn 管理员 cond imp fill
原文地址:https://www.cnblogs.com/net-sky/p/13129767.html
文章来自:
搜素材网的
编程语言模块,转载请注明文章出处。
文章标题:
C# 修改系统时间
文章链接:http://soscw.com/index.php/essay/40845.html
评论