Programs that trigger windows 7 basic color scheme (and AMD catalyst control center question)

GaryOakFJ

Honorable
Dec 7, 2013
14
0
10,510
The OSD on my TV is constantly on, taking up 10% of the screen, letting me know that I'm hooked up to hdmi 1, 1080p. the only fix I have found so far, is to activate LCD overdrive in amd catalyst control center. I upgraded the drivers to the latest version however, and LCD overdrive is no longer there. Is there any way to get it back (i tried reverting the drivers) and what programs out there force trigger the windows 7 basic color scheme?

EDIT: also, are we allowed to bump threads?
 

GaryOakFJ

Honorable
Dec 7, 2013
14
0
10,510


I'm not sure what you mean by that. I imagined uninstalling and reinstalling drivers would default all settings.
 
I don't know how to deal with the OSD, but for your last question, here is a batch script that will toggle the basic Win7 color scheme and Aero.

@echo off
sc interrogate uxsms | find "1062"
if %errorlevel%==0 goto :sc_start
sc stop uxsms
exit

:sc_start
sc start uxsms
exit