Products
GG网络技术分享 2025-11-13 17:25 4
根据您给的文档内容,
删除注册表中的PendingFileRenameOperations条目

HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\Session Manager中找到条目PendingFileRenameOperations。在安装过程中选择No
删除注册表中的特定文件
关闭其他全部柔软件并沉启电脑
python import os import winreg
def deleteregistryvalue: try: # 打开注册表键 registry_key = winreg.OpenKey
# 删除注册表键值
winreg.DeleteValue
# 关闭注册表键
winreg.CloseKey
# 沉启计算机
os.system
except Exception as e:
print
deleteregistryvalue
Demand feedback