Enable/disable ClearType in Windows7

前端 未结 8 1348
栀梦
栀梦 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:06

    Here's a PowerShell way to do it:

    Set-ItemProperty 'HKCU:\Control Panel\Desktop\' -Name FontSmoothing -Value "2"
    

    You'll need to log off and back on for it to take effect.

    NOTE: strangely the setting doesn't show up as enabled in Performance Options, even though it's clearly turned on:

提交回复
热议问题