|
@echo off
echo.
echo 按 "1"--开启Windows10经典右键菜单
echo.
echo 按 "2"--恢复Windows 11 套娃式新菜单
echo.
echo.
echo 按回车键退出脚本
echo.
set ip=
set /p ip=请选择:
if "%ip%" == "" goto end
if /I "ip%" == "1" goto cmd1
if /I "%ip%" == "2" goto cmd2
:cmd1
reg add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve
@taskkill /f /IM explorer.exe
start explorer
exit
:cmd2
reg delete "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}" /f
@taskkill /f /IM explorer.exe
start explorer
exit
:end
exit
|
评分
-
查看全部评分
|