win11去掉展开更多bat脚本
很多人用惯了win10的鼠标右键,不喜欢win11的右键,
没关系!今天给大家带来禁用的bat脚本,和恢复win11的脚本。
脚本使用方法,创建一个文本,把代码粘贴进去,然后保存为,bat格式,
编码选择ANSI格式,保存运行即可.以下是关闭右键更多选项
@echo off :: 提升权限 :CheckPrivileges NET FILE 1>NUL 2>NUL if '%errorlevel%' == '0' ( goto gotPrivileges ) else ( goto getPrivileges ) :getPrivileges if '%1'=='ELEV' (shift & goto gotPrivileges) echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs" echo UAC.ShellExecute "%~fs0", "ELEV", "", "runas", 1 >> "%temp%\getadmin.vbs" "%temp%\getadmin.vbs" exit /B :gotPrivileges if exist "%temp%\getadmin.vbs" ( del "%temp%\getadmin.vbs" ) pushd "%CD%" CD /D "%~dp0" :: 创建注册表项 reg add "HKEY_CURRENT_USER\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve :: 重启文件资源管理器 taskkill /f /im explorer.exe start explorer.exe echo 操作完成,右键菜单已修改为显示更多选项。 pause
以下是恢复以前的win11的右键选项。
@echo off :: 提升权限 :CheckPrivileges NET FILE 1>NUL 2>NUL if '%errorlevel%' == '0' ( goto gotPrivileges ) else ( goto getPrivileges ) :getPrivileges if '%1'=='ELEV' (shift & goto gotPrivileges) echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs" echo UAC.ShellExecute "%~fs0", "ELEV", "", "runas", 1 >> "%temp%\getadmin.vbs" "%temp%\getadmin.vbs" exit /B :gotPrivileges if exist "%temp%\getadmin.vbs" ( del "%temp%\getadmin.vbs" ) pushd "%CD%" CD /D "%~dp0" :: 删除注册表项 reg delete "HKEY_CURRENT_USER\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}" /f :: 重启文件资源管理器 taskkill /f /im explorer.exe start explorer.exe echo 操作完成,右键菜单已恢复默认设置。 pause
懒得操作的话,我也提供了不限速下载。