1. 首页
  2. 编程语言
  3. Python
  4. 破解thinkcell时间限制

破解thinkcell时间限制

上传者: 2020-06-10 08:52:25上传 PY文件 487B 热度 225次
thinkcell的有效期只有15天,每隔15天就要找一次码太麻烦了,有了这个程序加上python,就可以自动跳过thinkcell的有效期限制啦
下载地址
用户评论
码姐姐匿名网友 2020-06-10 08:52:25

就是调整系统日期。。。 import time import os import subprocess localtime = time.localtime(time.time()) date1 = time.strftime("%Y-%m-%d", time.localtime()) file1 = open('D:/Thinkcell_time.bat','w') file1.write('@date 2019-04-01') file1.close() subprocess.Popen('D:/Thinkcell_time.bat') os.popen(r'D:\1.xlsx') time.sleep(1) os.popen(r'D:\1.pptx') time.sleep(1) file2 = open('D:/System_time.bat','w') file2.write('@date ') file2.write(date1) file2.close() subprocess.Popen('D:/System_time.bat')