如何在 Windows 11/10 中备份和恢复文件夹视图设置
Windows 文件资源管理器(Windows File Explorer)易于导航,并带有许多有趣的辅助功能,其中之一是文件夹视图设置。您可以自定义文件夹以表示它们存储的文件类型。
例如,如果您有一个仅保存视频的文件夹,您可以将文件夹设置为显示视频的缩略图,而不是列表或文件详细信息。您还可以自定义每个文件夹以显示中号、大号或超大号图标。
进行这些更改后,您可能需要备份它们,以便在它们被重置时恢复文件夹视图设置。本指南向您展示如何使用批处理文件备份和恢复文件夹视图设置。
(Back)Windows 11/10备份和恢复文件夹视图(Folder View)设置
请按照以下步骤备份和恢复Windows 11/10文件夹视图(Folder View)设置。
- 创建备份和恢复批处理文件。
- 如果被Windows阻止,请取消阻止 .bat 文件。
- 运行 .bat 文件以备份和恢复您的文件夹视图设置。
事不宜迟,我们现在将直接进入执行上述操作的详细步骤。
1]创建(Create)备份和恢复批处理文件
单击 开始(Start)按钮并搜索 记事本(Notepad)。从搜索结果中选择记事本应用程序以启动它。(Notepad)
(Enter)在新的记事本文件中(Notepad)输入以下文本:
@ECHO OFF title Backup and Restore Folder View Settings Tool :choice cls echo. echo OPTIONS: echo. echo 1. Back up your folder view settings. echo 2. Restore folder view settings from backup. echo 3. Cancel echo. echo. set /P c=Type the option number you would like to do, and press Enter? if /I "%c%" EQU "1" goto :verify1 if /I "%c%" EQU "2" goto :verify2 if /I "%c%" EQU "3" exit goto :choice :verify1 IF EXIST "%userprofile%\Desktop\Folder View Settings Backup" goto :response1 goto :backup :response1 echo. echo. echo You already have a "Folder View Settings Backup" folder on your desktop. echo Please move it to another location, and try again. echo. pause goto :choice :backup mkdir "%userprofile%\Desktop\Folder View Settings Backup" REG EXPORT HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Streams\Defaults "%userprofile%\Desktop\Folder View Settings Backup\HKCU_Software_Microsoft_Windows_CurrentVersion_Explorer_Streams_Defaults.reg" /y REG EXPORT HKCU\Software\Microsoft\Windows\Shell\BagMRU "%userprofile%\Desktop\Folder View Settings Backup\HKCU_Software_Microsoft_Windows_Shell_BagMRU.reg" /y REG EXPORT HKCU\Software\Microsoft\Windows\Shell\Bags "%userprofile%\Desktop\Folder View Settings Backup\HKCU_Software_Microsoft_Windows_Shell_Bags.reg" /y REG EXPORT HKCU\Software\Microsoft\Windows\ShellNoRoam\Bags "%userprofile%\Desktop\Folder View Settings Backup\HKCU_Software_Microsoft_Windows_ShellNoRoam_Bags.reg" /y REG EXPORT HKCU\Software\Microsoft\Windows\ShellNoRoam\BagMRU "%userprofile%\Desktop\Folder View Settings Backup\HKCU_Software_Microsoft_Windows_ShellNoRoam_BagMRU.reg" /y REG EXPORT "HKCU\Software\Classes\Local Settings\Software\Microsoft\Windows\Shell\BagMRU" "%userprofile%\Desktop\Folder View Settings Backup\HKCU_Software_Classes_LocalSettings_Software_Microsoft_Windows_Shell_BagMRU.reg" /y REG EXPORT "HKCU\Software\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags" "%userprofile%\Desktop\Folder View Settings Backup\HKCU_Software_Classes_LocalSettings_Software_Microsoft_Windows_Shell_Bags.reg" /y cls echo. echo Backup of folder view settings successfully completed. echo. pause exit :verify2 IF NOT EXIST "%userprofile%\Desktop\Folder View Settings Backup" goto :response goto :restore :response echo. echo. echo You do not have a "Folder View Settings Backup" folder on your desktop. echo Please place the backup folder on your desktop, and try again. echo. pause goto :choice :restore REG Delete "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Streams\Defaults" /F 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 IMPORT "%userprofile%\Desktop\Folder View Settings Backup\HKCU_Software_Microsoft_Windows_CurrentVersion_Explorer_Streams_Defaults.reg" REG IMPORT "%userprofile%\Desktop\Folder View Settings Backup\HKCU_Software_Microsoft_Windows_Shell_BagMRU.reg" REG IMPORT "%userprofile%\Desktop\Folder View Settings Backup\HKCU_Software_Microsoft_Windows_Shell_Bags.reg" REG IMPORT "%userprofile%\Desktop\Folder View Settings Backup\HKCU_Software_Microsoft_Windows_ShellNoRoam_Bags.reg" REG IMPORT "%userprofile%\Desktop\Folder View Settings Backup\HKCU_Software_Microsoft_Windows_ShellNoRoam_BagMRU.reg" REG IMPORT "%userprofile%\Desktop\Folder View Settings Backup\HKCU_Software_Classes_LocalSettings_Software_Microsoft_Windows_Shell_BagMRU.reg" REG IMPORT "%userprofile%\Desktop\Folder View Settings Backup\HKCU_Software_Classes_LocalSettings_Software_Microsoft_Windows_Shell_Bags.reg" cls echo. echo Backup of folder view settings successfully restored. echo. echo Waiting to restart explorer to apply. echo Your screen will flash as explorer is restarted. echo. echo. pause taskkill /f /im explorer.exe start explorer.exe exit
您可以将上述文本复制并粘贴到注释中。接下来(Next),按 CTRL + S并使用 .bat扩展名将文件保存在桌面上。(on your desktop )在点击保存(Save) 按钮之前,通过在文件名末尾添加 .bat来执行此操作。(.bat)
以 .bat 扩展名保存的文件是批处理文件,如果正确完成,它们将允许您在Windows系统上运行命令。了解有关批处理文件的更多信息并探索这些很酷的技巧。
2]取消阻止.bat文件
成功将新创建的文件保存为.bat 文件后,Windows可能会阻止它。要运行此文件,您需要先取消阻止它。为此,请右键单击该文件并 从上下文菜单中选择“属性”。(Properties)
切换到“ 属性”窗口的“(Properties)常规(General)”选项卡,然后在窗口底部找到“ 取消阻止”复选框。(Unblock)选中此框并单击“ 确定(OK)”按钮以取消阻止批处理文件。
注意:(NOTE: )如果 您的设置中没有取消阻止(Unblock) 复选框,则意味着Windows没有阻止该文件,您可以进行下一步。
3]运行.bat文件
解锁 .bat 文件后,您就可以开始了。您可以通过双击运行 .bat 文件。运行批处理文件会打开一个命令提示符(Command Prompt)窗口,其中显示以下选项:
- 备份您的文件夹视图设置。
- 从备份中恢复文件夹视图设置。
- 取消。
要备份您的文件夹视图设置,请按 1并按ENTER键。如果您想恢复文件夹视图设置,请按2并按 ENTER。
或者,按 3取消操作。
希望这可以帮助。
Related posts
Best免费file and folder synchronization software适用于Windows 10
如何Backup and Restore Quick Access Folders在Windows 10
如何在Windows 11/10中恢复以前版本的Files and Folders
Export and Backup Device Drivers在Windows 10中使用PowerShell
如何在Windows 11/10上克隆Hard Drive
如何在Windows 10 OneNote中更改View
如何在Windows 10中停止共享文件夹
Windows 10中的WinSxS Folder解释说明
如何在Windows 10中的Folder中打印Files列表
如何还原Windows 10 Library文件夹default location
如何在Windows 10中创建Folder Tree?
如何在Windows 10重命名Files or Folders
Folder在Windows 10的Black background后面
如何在Windows 11/10中更改File or Folder的Ownership
如何在Windows 10中Backup or Restore default Power计划
如何在Windows 10中Backup and Restore Drivers
如何仅在Windows 10中制作File or Folder Hidden或Read
空Folder Cleaner:Windows 10中的Delete Empty Folders and Files
Windows 10中Startup folder的位置
Best免费Email Backup software为Windows 10