Windows 常见问题
🌶 过期警告: 本页面距今已有 1042 天未更新,年久失修,内容可能有所偏颇,还请仔细甄别!
删除自带输入法
删除以下注册表
1HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\CTF\TIP2
3{81d4e9c9-1d3b-41bc-9e6c-4b40bf79e35e}
双系统时间问题
Windows 下以管理员身份打开命令行窗口
1Reg add HKLM\SYSTEM\CurrentControlSet\Control\TimeZoneInformation /v RealTimeIsUniversal /t REG_DWORD /d 1
解决部分图标加载不出来
- 在桌面新建文本文档,复制以下代码
1rem 关闭Windows外壳程序explorer2
3
4taskkill /f /im explorer.exe5
6
7rem 清理系统图标缓存数据库8
9
10attrib -h -s -r "%userprofile%\AppData\Local\IconCache.db"11
12
13del /f "%userprofile%\AppData\Local\IconCache.db"14
15
30 collapsed lines
16attrib /s /d -h -s -r "%userprofile%\AppData\Local\Microsoft\Windows\Explorer\*"17
18
19del /f "%userprofile%\AppData\Local\Microsoft\Windows\Explorer\thumbcache_32.db"20
21del /f "%userprofile%\AppData\Local\Microsoft\Windows\Explorer\thumbcache_96.db"22
23del /f "%userprofile%\AppData\Local\Microsoft\Windows\Explorer\thumbcache_102.db"24
25del /f "%userprofile%\AppData\Local\Microsoft\Windows\Explorer\thumbcache_256.db"26
27del /f "%userprofile%\AppData\Local\Microsoft\Windows\Explorer\thumbcache_1024.db"28
29del /f "%userprofile%\AppData\Local\Microsoft\Windows\Explorer\thumbcache_idx.db"30
31del /f "%userprofile%\AppData\Local\Microsoft\Windows\Explorer\thumbcache_sr.db"32
33
34rem 清理 系统托盘记忆的图标35
36
37echo y|reg delete "HKEY_CLASSES_ROOT\Local Settings\Software\Microsoft\Windows\CurrentVersion\TrayNotify" /v IconStreams38
39echo y|reg delete "HKEY_CLASSES_ROOT\Local Settings\Software\Microsoft\Windows\CurrentVersion\TrayNotify" /v PastIconsStream40
41
42rem 重启Windows外壳程序explorer43
44
45start explorer
1.将 txt 后缀修改为 bat
2.双击运行
赞赏博主