答案1
RegEdit 允许您直接修改二进制数据,因此不确定问题出在哪里。
转到您想要编辑值的键 -> 在该值上单击右键 -> 修改二进制数据... -> 使用鼠标和/或箭头键移动到适当的位置 -> 按退格键删除 -> 输入自己的字符
如果问题在于获取正确的值(您没有说明),那么这个答案应该会有所帮助,例如:https://superuser.com/a/859430/1145698
答案2
没关系。我自己解决了。这不仅仅是桌面图标的问题,但我觉得我更喜欢它。
我创建了一个 .reg 文件并将这些内容添加到其中:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts]
"Segoe UI (TrueType)"=""
"Segoe UI Bold (TrueType)"=""
"Segoe UI Bold Italic (TrueType)"=""
"Segoe UI Italic (TrueType)"=""
"Segoe UI Light (TrueType)"=""
"Segoe UI Semibold (TrueType)"=""
"Segoe UI Symbol (TrueType)"=""
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\FontSubstitutes]
"Segoe UI"="Rockwell Extra Bold"
我从这文章。