I'm using Windows 10 and currently, I specifically set for each app, the HIGHDPIAWARE (high-DPI scaling) attribute in registry key which is found in :
HKCU\Software\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\Layers
With these values :
But I really don't want to specify each app for that feature.
Question:
How can I make all apps to be HIGHDPIAWARE?

HIGHDPIAWARE", not "high-DPI aware". Enabling that flag tells Windows to not automatically scale the program (making it blurry), even if it's not actually DPI-aware. Enabling it for all programs (by setting a global environment variable) disables automatic scaling for non-DPI aware programs, but DPI-aware programs are unaffected. – Jun 25 '20 at 02:43