清除檔案總管設定(位置、大小等)

清除檔案總管設定(位置、大小等)

是否可以將 Windows 檔案總管的位置、首選項、大小等清除為預設?

答案1

Windows(檔案)資源管理器視圖設定儲存在多個位置。

嘗試以下頁面上的教學:
http://www.sevenforums.com/tutorials/15692-folder-view-settings-reset-all-default.html

以下批次腳本是示範這些位置的教學課程的一部分。

@echo off

:: Created by: Shawn Brink
:: http://www.sevenforums.com
:: Tutorial:  http://www.sevenforums.com/tutorials/15692-folder-view-settings-reset-all-default.html


:: To reset all folders to default folder views
Reg Delete "HKCU\Software\Microsoft\Windows\Shell\BagMRU" /F
Reg Delete "HKCU\Software\Microsoft\Windows\Shell\Bags" /F

Reg Delete "HKCU\Software\Microsoft\Windows\ShellNoRoam\Bags" /F
Reg Delete "HKCU\Software\Microsoft\Windows\ShellNoRoam\BagMRU" /F

Reg Delete "HKCU\Software\Classes\Local Settings\Software\Microsoft\Windows\Shell\BagMRU" /F
Reg Delete "HKCU\Software\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags" /F

Reg Delete "HKCU\Software\Classes\Wow6432Node\Local Settings\Software\Microsoft\Windows\Shell\Bags" /F
Reg Delete "HKCU\Software\Classes\Wow6432Node\Local Settings\Software\Microsoft\Windows\Shell\BagMRU" /F


:: To kill and restart explorer
taskkill /f /im explorer.exe
start explorer.exe

相關內容