SS Sub
免费、付费机场节点和订阅

Windows11 右键切换样式为win10

试试这个一键修改bat吧

图片

下载程序: 🚀123网盘不限速下载

源代码:

新建一个txt,复制代码进去,后缀改成.bat,也可以。

@echo off

:start

cls

echo,

echo 修改右键菜单模式

echo,

echo 1 穿越到Windows 10默认模式

echo,

echo 2 恢复为Windows 11默认模式

echo,

echo 0 什么也不做,退出

echo,

echo,

choice /c:120 /n /m:"请选择要进行的操作(1/2/0):"

if %errorlevel%==0 exit

if %errorlevel%==2 goto cmd2

if %errorlevel%==1 goto cmd1

exit

:cmd1

reg.exe add "HKCUSoftwareClassesCLSID{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}InprocServer32" /f /ve

taskkill /f /im explorer.exe

start explorer.exe

exit

:cmd2

reg.exe delete "HKCUSoftwareClassesCLSID{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}" /f

taskkill /f /im explorer.exe

start explorer.exe

exit
未经允许不得转载:机场推荐官 » Windows11 右键切换样式为win10