我該如何使用待處理的檔案重命名操作重命名正在使用的檔案?特別是系統文件,例如tcpip.sys
.我已經PendingFileRenameOperations
在中創建了一個密鑰(REG_MULTI_SZ)
HKLM\System\CurrentControlSet\Control\Session Manager
並在那裡寫了這樣的東西:
\??\C:\windows\system32\tcpip.sys \??\C:\windows\system32\tcpip.bkp
我發現 Windows 文件保護不允許我這樣做。它出什麼問題了?
答案1
在我看來你有一個錯誤長檔名前綴語法。而不是\??\
,嘗試\\?\
。