小侠
原帖由 kh2841 于 2022-2-6 06:25 发表 posted by wap, platform: iPhone Windows肯定是一代比一代好用,但这次非常SB的是它限制升级。我家5台电脑只有一个可以升11,同时用两个系统太折腾了,只能全都不升级。
查看详细资料
TOP
@echo off :start cls echo, echo Modify Right Cilck display style echo, echo 1 Use Windows10 Style echo, echo 2 Back toWindows11 style echo, echo 0 Do noting, exit echo, echo, choice /c:120 /n /m:"Choose opration(1/2/0):" if %errorlevel%==0 exit if %errorlevel%==2 goto cmd2 if %errorlevel%==1 goto cmd1 exit :cmd1 reg.exe add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve taskkill /f /im explorer.exe start explorer.exe exit :cmd2 reg.exe delete "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}" /f taskkill /f /im explorer.exe start explorer.exe exit