2021年11月

您好!

根据《互联网域名管理办法》和相关法律法规要求,域名注册信息须真实、准确、完整。未通过实名认证的域名(含域名命名审核和注册人资料实名审核),域名注册服务机构不得为其提供服务。

将于2021年12月1日起,不再对.cn/.中国/公司/.网络域名未通过实名认证或注册信息不真实、不准确、不完整的域名提供续期、转移、过户、修改DNS、交易和下载证书等服务。

即2021年12月1日起,未实名域名必须以当前所有者实名后,才可进行变更所有者信息、转出、续费等操作。请您务必重视,及时提交域名实名认证!

Win11切换到旧版右键菜单:

reg add "HKCU\Software\Classes\CLSID{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve

恢复回Win11右键菜单:

reg delete "HKCU\Software\Classes\CLSID{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}" /f

重启Windows资源管理器生效。

taskkill /f /im explorer.exe & start explorer.exe

写成BAT,如下

echo Win11切换到旧版右键菜单:

    reg add "HKCU\Software\Classes\CLSID{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve

echo 重启Windows资源管理器生效。

    taskkill /f /im explorer.exe & start explorer.exe





21H2

@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 "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

现在已经有个工具,Windows 11 Classic Context Menu
使用工具更方便
https://www.sordum.org/14479/windows-11-classic-context-menu-v1-1/