闲来无事给家里的一体机装了 windows11
,问题颇多:
- 右键菜单竟然是折叠的,要多点一下才能看到全部菜单;
- 没有声音;
至今没解决
- 打印机能连接,无法打印。
胡乱折腾一阵,好了。
右键菜单问题,网上搜索了一番,找到了如下解决方案:
- 创建
changeRightMenue.bat
的文本文件 - 把下边的
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 "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
- 执行
changeRightMenue.bat
脚本,就可以在两种模式之间切换自如了。