Enable/disable ClearType in Windows7

前端 未结 8 1345
栀梦
栀梦 2021-01-04 12:00

Hi I need to enable/disable Cleartype (or \"Adjust the appearance and performance of Windows > Smooth edges of screen fonts\") via cmd (or any script like VBS/JS) or from re

相关标签:
8条回答
  • 2021-01-04 12:13

    make file with extention .reg this is registry for files

    Disable_Smooth_edges_of_screen_fonts

    [HKEY_CURRENT_USER\Control Panel\Desktop]
    "FontSmoothing"="0"
    

    Enable_Smooth_edges_of_screen_fonts

    [HKEY_CURRENT_USER\Control Panel\Desktop]
    "FontSmoothing"="2"
    

    you can also do this vis cmd here is syntax for command

    REG ADD KeyName [/v ValueName | /ve] [/t Type] [/s Separator] [/d Data] [/f]
    

    you must logoff to have effect that you changed

    0 讨论(0)
  • 2021-01-04 12:27

    The following works for me: Control Panel > System > Advanced system settings > Advanced > (Performance) Settings > Visual Effects > Select 'Custom' and uncheck 'Smooth edges of screen fonts'

    0 讨论(0)
提交回复
热议问题