win11恢复win10形式的右键显示
win11恢复win10形式的右键显示
一、问题
- win11系统用7z解压文件的时候,右键压缩包文件,还需要点击"显示更多选项"才能看见7z的选项,所以想要将这个二级右键的形式恢复成win10那种。
二、解决方法
shell
# win + r,输入cmd,打开终端
# 修改注册表
reg.exe add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve
# 重启资源管理器
taskkill /f /im explorer.exe & start explorer.exe
三、恢复方法
shell
# win + r,输入cmd,打开终端
# 修改注册表
reg.exe delete "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /va /f
# 重启资源管理器
taskkill /f /im explorer.exe & start explorer.exe