让win11右键默认显示更多选项
cmd / powershell
右键默认显示更多选项
reg.exe add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve
刷新,使配置生效(该命令需要cmd执行,powershell不行)
taskkill /f /im explorer.exe & start explorer.exe
如果要恢复先前的状态(是对先前的注册表添加内容的删除)
reg.exe delete "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /va /f