Monthly Archives: February 2024

Windows 11 设置资源管理器为老式的右键菜单

Windows 11 中资源管理器右键菜单只显示它认为常用的项,很多项目被收起了,搞得很多操作要点击两次。 管理员权限下打开终端,输入: reg add “HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32” /f /ve 使用以下命令重新启动资源管理器: taskkill /f /im explorer.exe & start explorer.exe 如果要恢复 Windows 11 的缺省设置,使用以下命令删除之前添加的注册表项即可: reg delete “HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}” /f from https://v2ex.com/t/1013804#r_14289257

Posted in Uncategorized | Leave a comment