使用Python 禁用window时间同步
时间: 2023-10-09 14:12:05 浏览: 84
python同步时间脚本
您可以使用Python内置的`w32tm`模块来禁用Windows时间同步。以下是一个示例代码:
```python
import subprocess
# 禁用时间同步
subprocess.run(['w32tm', '/config', '/syncfromflags:manual', '/manualpeerlist:', ''], check=True)
subprocess.run(['net', 'stop', 'w32time'], check=True)
subprocess.run(['net', 'start', 'w32time'], check=True)
```
这将禁用Windows时间同步并重新启动Windows时间服务。请注意,此代码需要在管理员权限下运行。
阅读全文