Board logo

标题: [注册表类] [分享]批处理把Win11右键菜单修改为传统模式 [打印本页]

作者: ShowCode    时间: 2023-11-9 20:06     标题: [分享]批处理把Win11右键菜单修改为传统模式

修改之前:


修改之后:


Win11-传统模式右键菜单.bat
  1. @echo off
  2. reg add "HKEY_CURRENT_USER\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /ve /f
  3. taskkill /f /im explorer.exe
  4. start explorer.exe
复制代码
Win11-默认模式右键菜单.bat
  1. @echo off
  2. reg delete "HKEY_CURRENT_USER\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f
  3. taskkill /f /im explorer.exe
  4. start explorer.exe
复制代码





欢迎光临 批处理之家 (http://www.bathome.net/) Powered by Discuz! 7.2