您当前的位置:首页 > 计算机 > 编程开发 > Python

通过python实现同步修改本地电脑时间

时间:12-06来源:作者:点击数:

如果本地电脑在域中,如果不想让域中客户端同步服务器的时间可以关闭本机的Windows Time服务,打开计算机右键属性-服务和应用程序-服务,找到Windows Time服务,禁用掉。

然后附上具体实现代码,两种方法选其一:

# 更改计算机时间,需要管理员权限才能修改系统时间
import os
import time
import ctypes
import sys
import datetime
import ntplib
import win32api

def is_admin():
    """判断当前用户是否是管理员"""
    try:
        return ctypes.windll.shell32.IsUserAnAdmin()
    except:
        return False

def set_time():
    hosts = ['0.cn.pool.ntp.org', '1.cn.pool.ntp.org', '2.cn.pool.ntp.org', '3.cn.pool.ntp.org']
    t = ntplib.NTPClient()
    for host in hosts:
        try:
            res = t.request(host, port='ntp', version=4, timeout=5)
            if res:
                ts = res.tx_time
                # 方法一
                # _date = time.strftime('%Y-%m-%d', time.localtime(ts))
                # _time = time.strftime('%X', time.localtime(ts))
                _date, _time = str(datetime.datetime.fromtimestamp(ts))[:22].split(' ')

                if is_admin():
                    os.system('date {} && time {}'.format(_date, _time))
                    # 方法二
                    # tm_year, tm_mon, tm_mday, tm_hour, tm_min, tm_sec, tm_wday, tm_yday, tm_isdst = time.gmtime(ts)
                    # win32api.SetSystemTime(tm_year, tm_mon, tm_wday, tm_mday, tm_hour, tm_min, tm_sec, 0)
                else:
                    # 重新运行这个程序使用管理员权限
                    print("使用管理员权限运行该程序")
                    if sys.version_info[0] == 3:# Python主要版本号(major)
                        ctypes.windll.shell32.ShellExecuteW(None, "runas", sys.executable, __file__, None, 1)
                print("服务器时间:", _date, _time)
                print("本地的时间:", time.strftime('%Y-%m-%d %H:%M:%S'))
                return True
        except:
            pass

if __name__ == '__main__':
    while True:
        result = set_time()
        if result:
            break

以上需要安装ntplib包和管理员权限才能修改成功。

方便获取更多学习、工作、生活信息请关注本站微信公众号城东书院 微信服务号城东书院 微信订阅号
推荐内容
相关内容
栏目更新
栏目热门
本栏推荐