Enable/disable ClearType in Windows7

前端 未结 8 1389
栀梦
栀梦 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

提交回复
热议问题