Mac电脑如何批量删除office最近打开文件?

157 阅读1分钟

如果你通过删除以下文件达不到你想删除office最近打开文件记录的目的。

com.microsoft.Excel.securebookmarks.plist
com.microsoft.Word.securebookmarks.plist
com.microsoft.PowerPoint.securebookmarks.plist

请按照以下方法操作试试:

  1. 打开 ~/Library/Group Containers/UBF8T346G9.Office/MicrosoftRegistrationDB,找到McrosoftRegistrationDB_xxxxxxxxxxxx.reg文件
  2. 在终端运行 sqlite3 ~/Library/Group Containers/UBF8T346G9.Office/MicrosoftRegistrationDB/MicrosoftRegistrationDB_xxxxxxxxxxxx.reg
  3. 查询记录select * from HKEY_CURRENT_USER_values where node_id in (SELECT node_id FROM HKEY_CURRENT_USER_values WHERE name='path'); 此步骤可省略
  4. 删除记录 DELETE from "HKEY_CURRENT_USER_values" where node_id in (SELECT node_id FROM "HKEY_CURRENT_USER_values" WHERE name="path");
  5. 退出sqlite .quit

参考:ClearRecordsRecentFilesMSOffice