恢复 Windows 11 经典资源管理器和右键菜单
563 字
3 分钟
恢复 Windows 11 经典资源管理器和右键菜单
本指南提供了两种修改 Windows 11 界面风格的方法:一种是仅针对当前登录用户的修改,另一种是适用于所有用户的全局修改。
⚠️ 操作前重要提示
备份注册表:修改注册表存在一定风险。在进行任何操作前,强烈建议您备份注册表或创建系统还原点,以便在出现问题时能够恢复。 重启资源管理器:所有修改完成后,都需要重启“Windows 资源管理器”(explorer.exe)才能生效。您可以使用任务管理器结束 explorer.exe 进程,然后通过“运行新任务”重新启动它,或者直接重启电脑。
👤 针对当前用户
:: 右键菜单reg add "HKEY_CURRENT_USER\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InProcServer32" /ve /freg add "HKEY_CURRENT_USER\Software\Classes\WOW6432Node\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InProcServer32" /ve /f:: 资源管理器搜索reg add "HKEY_CURRENT_USER\Software\Classes\CLSID\{1d64637d-31e9-4b06-9124-e83fb178ac6e}\InProcServer32" /ve /freg add "HKEY_CURRENT_USER\Software\Classes\WOW6432Node\CLSID\{1d64637d-31e9-4b06-9124-e83fb178ac6e}\InProcServer32" /ve /f:: 资源管理器reg add "HKEY_CURRENT_USER\Software\Classes\CLSID\{6480100b-5a83-4d1e-9f69-8ae5a88e9a33}\InProcServer32" /ve /freg add "HKEY_CURRENT_USER\Software\Classes\WOW6432Node\CLSID\{6480100b-5a83-4d1e-9f69-8ae5a88e9a33}\InProcServer32" /ve /freg add "HKEY_CURRENT_USER\Software\Classes\CLSID\{2aa9162e-c906-4dd9-ad0b-3d24a8eef5a0}\InProcServer32" /ve /freg add "HKEY_CURRENT_USER\Software\Classes\WOW6432Node\CLSID\{2aa9162e-c906-4dd9-ad0b-3d24a8eef5a0}\InProcServer32" /ve /f:: 重启资源管理器taskkill /f /im explorer.exe && start explorer.exe:: 右键菜单reg delete "HKEY_CURRENT_USER\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}" /freg delete "HKEY_CURRENT_USER\Software\Classes\WOW6432Node\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}" /f:: 资源管理器搜索reg delete "HKEY_CURRENT_USER\Software\Classes\CLSID\{1d64637d-31e9-4b06-9124-e83fb178ac6e}" /freg delete "HKEY_CURRENT_USER\Software\Classes\WOW6432Node\CLSID\{1d64637d-31e9-4b06-9124-e83fb178ac6e}" /f:: 资源管理器reg delete "HKEY_CURRENT_USER\Software\Classes\CLSID\{6480100b-5a83-4d1e-9f69-8ae5a88e9a33}" /freg delete "HKEY_CURRENT_USER\Software\Classes\WOW6432Node\CLSID\{6480100b-5a83-4d1e-9f69-8ae5a88e9a33}" /freg delete "HKEY_CURRENT_USER\Software\Classes\CLSID\{2aa9162e-c906-4dd9-ad0b-3d24a8eef5a0}" /freg delete "HKEY_CURRENT_USER\Software\Classes\WOW6432Node\CLSID\{2aa9162e-c906-4dd9-ad0b-3d24a8eef5a0}" /f:: 重启资源管理器taskkill /f /im explorer.exe && start explorer.exe👥 针对所有用户 (高级操作,需要 SYSTEM 权限)
:: 右键菜单reg add "HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InProcServer32" /ve /freg add "HKEY_LOCAL_MACHINE\Software\Classes\WOW6432Node\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InProcServer32" /ve /f:: 资源管理器搜索reg add "HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{1d64637d-31e9-4b06-9124-e83fb178ac6e}\InProcServer32" /ve /freg add "HKEY_LOCAL_MACHINE\Software\Classes\WOW6432Node\CLSID\{1d64637d-31e9-4b06-9124-e83fb178ac6e}\InProcServer32" /ve /f:: 资源管理器reg add "HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{6480100b-5a83-4d1e-9f69-8ae5a88e9a33}\InProcServer32" /ve /freg add "HKEY_LOCAL_MACHINE\Software\Classes\WOW6432Node\CLSID\{6480100b-5a83-4d1e-9f69-8ae5a88e9a33}\InProcServer32" /ve /freg add "HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{2aa9162e-c906-4dd9-ad0b-3d24a8eef5a0}\InProcServer32" /ve /freg add "HKEY_LOCAL_MACHINE\Software\Classes\WOW6432Node\CLSID\{2aa9162e-c906-4dd9-ad0b-3d24a8eef5a0}\InProcServer32" /ve /f:: 重启资源管理器taskkill /f /im explorer.exe && start explorer.exe:: 右键菜单reg add "HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InProcServer32" /ve /t REG_SZ /d "C:\Windows\System32\Windows.UI.FileExplorer.dll" /freg add "HKEY_LOCAL_MACHINE\Software\Classes\WOW6432Node\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InProcServer32" /ve /t REG_SZ /d "C:\Windows\SysWOW64\Windows.UI.FileExplorer.dll" /f:: 资源管理器搜索reg add "HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{1d64637d-31e9-4b06-9124-e83fb178ac6e}\InProcServer32" /ve /t REG_SZ /d "C:\Windows\System32\Windows.UI.FileExplorer.dll" /freg add "HKEY_LOCAL_MACHINE\Software\Classes\WOW6432Node\CLSID\{1d64637d-31e9-4b06-9124-e83fb178ac6e}\InProcServer32" /ve /t REG_SZ /d "C:\Windows\SysWOW64\Windows.UI.FileExplorer.dll" /f:: 资源管理器reg add "HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{6480100b-5a83-4d1e-9f69-8ae5a88e9a33}\InProcServer32" /ve /t REG_SZ /d "C:\Windows\System32\Windows.UI.FileExplorer.dll" /freg add "HKEY_LOCAL_MACHINE\Software\Classes\WOW6432Node\CLSID\{6480100b-5a83-4d1e-9f69-8ae5a88e9a33}\InProcServer32" /ve /t REG_SZ /d "C:\Windows\SysWOW64\Windows.UI.FileExplorer.dll" /freg add "HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{2aa9162e-c906-4dd9-ad0b-3d24a8eef5a0}\InProcServer32" /ve /t REG_SZ /d "C:\Windows\System32\Windows.UI.FileExplorer.dll" /freg add "HKEY_LOCAL_MACHINE\Software\Classes\WOW6432Node\CLSID\{2aa9162e-c906-4dd9-ad0b-3d24a8eef5a0}\InProcServer32" /ve /t REG_SZ /d "C:\Windows\SysWOW64\Windows.UI.FileExplorer.dll" /f:: 重启资源管理器taskkill /f /im explorer.exe && start explorer.exe文章分享
如果这篇文章对你有帮助,欢迎分享给更多人!
恢复 Windows 11 经典资源管理器和右键菜单
https://www.satxm.top/posts/classic-explorer/相关文章智能推荐
1
Word 中的 EQ 域实操
WordWord EQ 域 示例
2
VMware 创建虚拟 USB 磁盘
VMware创建一个 .vmdk 文件,虚拟机将其识别为真实的 USB 存储设备,支持热插拔模拟和完整的USB协议交互。
3
命令行颜色代码
Windows命令行颜色代码
4
CMD 获取返回值第一个结果
WindowsCMD 获取返回值第一个结果
5
Windows 注册表优化
WindowsWindows 注册表优化
随机文章随机推荐



