删除自带输入法#
删除以下注册表
1
2
3
| HKEY_LOCAL_MACHINE\\\\SOFTWARE\\\\Microsoft\\\\CTF\\\\TIP
{81d4e9c9-1d3b-41bc-9e6c-4b40bf79e35e}
|
Linux + Windows 双系统时间问题#
Windows 下以管理员身份打开命令行窗口
1
| Reg add HKLM\\\\SYSTEM\\\\CurrentControlSet\\\\Control\\\\TimeZoneInformation /v RealTimeIsUniversal /t REG_DWORD /d 1
|
解决部分图标加载不出来#
- 在桌面新建文本文档,复制以下代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
| rem 关闭Windows外壳程序explorer
taskkill /f /im explorer.exe
rem 清理系统图标缓存数据库
attrib -h -s -r "%userprofile%\\\\AppData\\\\Local\\\\IconCache.db"
del /f "%userprofile%\\\\AppData\\\\Local\\\\IconCache.db"
attrib /s /d -h -s -r "%userprofile%\\\\AppData\\\\Local\\\\Microsoft\\\\Windows\\\\Explorer\\\\*"
del /f "%userprofile%\\\\AppData\\\\Local\\\\Microsoft\\\\Windows\\\\Explorer\\\\thumbcache_32.db"
del /f "%userprofile%\\\\AppData\\\\Local\\\\Microsoft\\\\Windows\\\\Explorer\\\\thumbcache_96.db"
del /f "%userprofile%\\\\AppData\\\\Local\\\\Microsoft\\\\Windows\\\\Explorer\\\\thumbcache_102.db"
del /f "%userprofile%\\\\AppData\\\\Local\\\\Microsoft\\\\Windows\\\\Explorer\\\\thumbcache_256.db"
del /f "%userprofile%\\\\AppData\\\\Local\\\\Microsoft\\\\Windows\\\\Explorer\\\\thumbcache_1024.db"
del /f "%userprofile%\\\\AppData\\\\Local\\\\Microsoft\\\\Windows\\\\Explorer\\\\thumbcache_idx.db"
del /f "%userprofile%\\\\AppData\\\\Local\\\\Microsoft\\\\Windows\\\\Explorer\\\\thumbcache_sr.db"
rem 清理 系统托盘记忆的图标
echo y|reg delete "HKEY_CLASSES_ROOT\\\\Local Settings\\\\Software\\\\Microsoft\\\\Windows\\\\CurrentVersion\\\\TrayNotify" /v IconStreams
echo y|reg delete "HKEY_CLASSES_ROOT\\\\Local Settings\\\\Software\\\\Microsoft\\\\Windows\\\\CurrentVersion\\\\TrayNotify" /v PastIconsStream
rem 重启Windows外壳程序explorer
start explorer
|
- 将
txt
后缀修改为 bat
- 双击运行
缩放问题#
Win10 修改字体大小
后,再改回去任务窗口顶栏并不会改变,此时只需要修改缩放为自定义缩放
,然后再调整回去即可。
Anne Pro 2 连接设备#
Anne Pro 2
由于固件问题,可能出现连接不上电脑的情况,这里给出淘宝客服的的步骤,已测试可以成功连接。
- 插线连接电脑,打开键盘灯光,并清除蓝牙连接信息。
- 准备连接,先打开蓝牙搜索界面,再打开键盘背部的开关,然后长按
Fn2 + 1
5秒以上,不要放手,键盘上按键 1
的灯快速闪烁的时候,在蓝牙设备点击连接。
注意:闪烁的数字其实就是连接的设备编号,如果没连接成功可以数字 1-4 都试一下
Anne Pro 设备驱动:点击下载
网络连接问题#
win10 18362版本后连接WiFi后可能出现已连接网络但显示未连接的情况,虽然仍能正常访问网络,但部分情境下可能受限,解决方法如下:
找到如下注册表:
1
| \HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NlaSvc\Parameters\Internet
|
修改如下项目值为右侧内容:
1
2
3
4
5
6
7
| ActiveWebProbeContent → Microsoft NCSI
ActiveWebProbeContentV6 → Microsoft NCSI
ActiveWebProbeHost → www.msftncsi.com
ActiveWebProbeHostV6 → ipv6.msftncsi.com
ActiveWebProbePath → ncsi.txt
ActiveWebProbePathV6 → ncsi.txt
EnableActiveProbing → 1
|
原因:每当连网后,系统会自动向微软的 http://dns.msftncsi.com发出请求,然后返回一个NCSI.txt的值,这一值如果正确时,则确认为已连网。而Win10最近的版本中,这个返回服务器和值有了新变化并反映为6个注册表项中。这些变化因国内部分运行商的网络重定向,不能得到正确的反馈,因此出现实际能上网确显示为无internet的问题。
安全中心#
windows11
部分精简系统重启后任务栏会出现安全中心图标,删除方法如下:
以管理员身份运行终端,粘贴如下内容回车:
1
| reg delete HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v "SecurityHealth" /f
|
HEVC 插件地址#
HEVC
win11跳过开机联网#
按键盘上的Shift+F10调出命令提示符,输入以下内容后回车,等待系统重启:
1
2
| oobe\bepassnro
# 注意:不需要区分大小写
|
LTSC版本安装 Microsoft Store#
管理员身份运行 cmd
,输入以下内容:
适用于 LTSC2021 以及 LTSC2019,自行测试。
EXE 病毒解决#
创建两个文件依次执行:
创建 1.reg
并执行
1
2
3
4
| Windows Registry Editor Version 5.00
[HKEY_LOCAL_ MACHINE \SOFTWARE\Microsoft\Windows\CurrentVersion
\Explorer\Advanced\Folder\Hidden
\SHOWALL] "CheckedValue"=dword:00000001
|
创建 2.bat
并执行
1
| for /f "delims=" %%i in ('dir /ah /s/b') do attrib "%%i" -s -h
|