由于TIA 有时需要安装多个包,比如Safety 和 StartDrive 等会在注册表生成一个PendingFileRenameOperations的条目,每次手动去找比较麻烦,就用两句VBS语句代替了查找和删除动作,内容如下,需要把后缀名改成vbs,双击就可以运行;
TIA_Instrall_Reboot_Fix.txt
set wshshell=wscript.CreateObject("wscript.shell")
wshshell.RegDelete "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\PendingFileRenameOperations"
set wshshell=nothing