清除文件资源管理器设置(位置,大小等)


2

是否可以将Windows文件资源管理器的位置,首选项,大小等清除为默认设置?

Answers:


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

这个剂量不清楚窗口位置......
TMS

0

是否可以清除Windows文件资源管理器位置,   首选项,大小等到默认设置?

只需在Windows资源管理器中打开任何文件点击整理 - >文件夹和搜索选项 - >视图

您只需单击“恢复默认值”和“应用于文件夹”

enter image description here

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.