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]

  • 相关阅读:
    iOS中点击按钮复制指定内容
    iOS开发中,获取图片之后保存或下载到本地相册中
    This app has crashed because it attempted to access privacy-sensitive data without a usage description. The app's Info.plist must contain an NSPhotoLibraryAddUsageDescription key with a string value
    ios中友盟集成好使用总结
    ios中仿蚂蚁森林动画效果
    window frida安装
    Android_server提示端口被占用
    Android stdio Apktool源码编译
    Android ooVoo Apk附件关联分析
    cocos2d-x-2.2.6 project-creator文件夹下python.bat
  • 原文地址:https://www.cnblogs.com/findumars/p/5685372.html
Copyright © 2011-2022 走看看