专业编程基础技术教程

网站首页 > 基础教程 正文

电脑时间一直有问题,换了电池也无法解决,只好写个程序来对时

ccvgpt 2024-08-12 15:01:26 基础教程 8 ℃
import ctypes, sys
import ntplib
import time
import os
import datetime


def ntptime():
    # 连接阿里云NTP服务器
    response = ntplib.NTPClient().request('ntp.aliyun.com')
    ts = response.tx_time
    _date = time.strftime('%Y-%m-%d', time.localtime(ts))
    _time = time.strftime('%X', time.localtime(ts))
    curtime='date {} && time {}'.format(_date, _time)
    os.system(curtime)
    t1 = time.strftime('%Y-%m-%d %X', time.localtime(ts))
    t2 = datetime.datetime.now().strftime('%Y-%m-%d %X')
    if t1 == t2:
        print('\n\nNTP网络对时成功,阿里NTP服务器返回的时间为:  {}   {}'.format(_date, _time))
    else:
        print('NTP对时失败')
 
# 显示一下结果
    variable = input("\n\n按回车键退出!")

def is_admin():
    try:
        # 获取当前用户的是否为管理员,修改系统时间要以管理员身份运行程序
        return ctypes.windll.shell32.IsUserAnAdmin()
    except:
        return False
 
if is_admin():
    ntptime()
else:
    # 重新运行这个程序使用管理员权限
    ctypes.windll.shell32.ShellExecuteW(None, "runas", sys.executable, __file__, None, 1)

Tags:

最近发表
标签列表