zoukankan      html  css  js  c++  java
  • Win 10 、Win 8 系统默认字体如何修改为宋体

    Win 10 字体改为宋体方法:
    新建一个文本文档txt,将如下代码复制进去:
    Windows Registry Editor Version 5.00
    [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionFonts]
    "Microsoft YaHei & Microsoft YaHei UI (TrueType)"="simsun.ttc"
    [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionFontSubstitutes]
    "Microsoft YaHei"="SimSun"
    "Microsoft YaHei UI"="SimSun"
    保存,将文本文档txt的后缀名txt改为reg,双击或用注册表编辑器打开,确认后重启生效。


    Win 10 系统字体还原为默认字体的方法:
    新建一个文本文档txt,将如下代码复制进去:
    Windows Registry Editor Version 5.00
    [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionFonts]
    "Microsoft YaHei & Microsoft YaHei UI (TrueType)"="msyh.ttc"
    [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionFontSubstitutes]
    "Microsoft YaHei"=-
    "Microsoft YaHei UI"=-
    保存,将文本文档txt的后缀名txt改为reg,双击或用注册表编辑器打开,确认后重启生效。


    Win 8 字体改为宋体方法:
    新建一个文本文档txt,将如下代码复制进去:
    Windows Registry Editor Version 5.00
    [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionFonts]
    "Microsoft YaHei (TrueType) & Microsoft YaHei UI (TrueType)"="simsun.ttc"
    [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionFontSubstitutes]
    "Microsoft YaHei"="simsun"
    "Microsoft YaHei UI"="simsun"
    保存,将文本文档txt的后缀名txt改为reg,双击或用注册表编辑器打开,确认后重启生效。


    Win 8 系统字体还原为默认字体的方法:
    新建一个文本文档txt,将如下代码复制进去:
    Windows Registry Editor Version 5.00
    [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionFonts]
    "Microsoft YaHei (TrueType) & Microsoft YaHei UI (TrueType)"="msyh.ttc"
    [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionFontSubstitutes]
    "Microsoft YaHei"=-
    "Microsoft YaHei UI"=-
    保存,将文本文档txt的后缀名txt改为reg,双击或用注册表编辑器打开,确认后重启生效。


    Win 8 字体比较彻底的改宋体的方法:
    新建一个文本文档txt,将如下代码复制进去:
    Windows Registry Editor Version 5.00
    [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionFonts]
    "Microsoft YaHei (TrueType) & Microsoft YaHei UI (TrueType)"="simsun.ttc"
    "Microsoft YaHei Bold (TrueType) & Microsoft YaHei UI Bold (TrueType)"="simsun.ttc"
    "Microsoft YaHei Light (TrueType) & Microsoft YaHei UI Light (TrueType)"="simsun.ttc"
    [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionFontSubstitutes]
    "Microsoft YaHei"="SimSun"
    "Microsoft YaHei UI"="SimSun"
    "Microsoft YaHei Bold"="SimSun"
    "Microsoft YaHei UI Bold"="SimSun"
    "Microsoft YaHei Light"="SimSun"
    "Microsoft YaHei UI Light"="SimSun"
    保存,将文本文档txt的后缀名txt改为reg,双击或用注册表编辑器打开,确认后重启生效。


    Win 8 系统字体还原为默认字体的方法:
    新建一个文本文档txt,将如下代码复制进去:
    Windows Registry Editor Version 5.00
    [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionFonts]
    "Microsoft YaHei (TrueType) & Microsoft YaHei UI (TrueType)"="msyh.ttc"
    "Microsoft YaHei Bold (TrueType) & Microsoft YaHei UI Bold (TrueType)"="msyhbd.ttc"
    "Microsoft YaHei Light (TrueType) & Microsoft YaHei UI Light (TrueType)"="msyhl.ttc"
    [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionFontSubstitutes]
    "Microsoft YaHei"=-
    "Microsoft YaHei UI"=-
    "Microsoft YaHei Bold"=-
    "Microsoft YaHei UI Bold"=-
    "Microsoft YaHei Light"=-
    "Microsoft YaHei UI Light"=-
    保存,将文本文档txt的后缀名txt改为reg,双击或用注册表编辑器打开,确认后重启生效。
    END


    注意事项
    以上字体注册表修改方法只适用于Win 8、Win 10 ,不适用Win 7
    经测试,以上注册表修改字体方法没有发现任何的问题,是安全的。如果360扫描发现字体不对,不用管它,忽略就是了。

    http://jingyan.baidu.com/article/870c6fc30ec5ecb03ee4be4b.html?qq-pf-to=pcqq.group

    可以取注册表中当前系统默认字体
    [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionFonts]

  • 相关阅读:
    bzoj 3732: Network 树上两点边权最值
    思维题题集--------一直都很害怕这些题
    Regionals 2014 >> Asia
    小小粉丝度度熊 二分答案 + two pointer
    I
    Binary Strings Gym
    卸载虚拟机时错误关闭了某个服务,使得电脑除了chrome浏览器都不能联网
    双系统给ubuntu增加分区
    tomcat问题
    eclipse:报错信息The superclass “javax.servlet.http.HttpServlet” was not found on the Java Build Path
  • 原文地址:https://www.cnblogs.com/findumars/p/5685372.html
Copyright © 2011-2022 走看看