Windows 7 automatically switching to basic (non-aero) theme. I need a way to disable that behaviour.

Anonymous
2009-11-15T23:07:02+00:00

This is very similar to what is described here: http://support.microsoft.com/kb/939423

As well as here: http://social.answers.microsoft.com/Forums/en-US/vistaperformance/thread/c7b869e1-5138-48a3-b09d-419f76e2f728

However, this is for Windows 7, not Vista.

Scenario:

On a 3 screen (1920x1080 each) setup ran on an ATI HD4890 (1gb RAM, running 2 screens) + HD 3450 (256mb RAM, running 1 screen), whenever anything graphic intensive is put onto the screen hosted by the HD3450, Windows will complain "The color scheme has been changed to Windows Basic - The current color scheme has exceeded its allowed memory so the color scheme has been automatically changed to improve performance. Click to see more information." and change my theme to Windows Basic.

However, it is to be noted that the 3450 is not being stressed at all (all the load is being put onto the 4890 according to GPU-Z).

It should not be a problem with system RAM (6gb, on Win7 x64) nor processing power (i7 920).

Is there a way to disable Windows automatically "improving performance" by switching my theme?

Windows for home | Previous Windows versions | Music, photos, and video

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments
Answer accepted by question author
Anonymous
2011-02-14T09:27:12+00:00

Run menu > sysdm.cpl > Advanced Tab > performance > select adjust for best performance > make sure you do not allow Windows to choose for you because your computer does not know whats best --- Make sure Enable Aero Peek is checked

---- OR ---

Right click my computer > properties > Advanced System settings > performance > select adjust for best performance > make sure you do not allow Windows to choose for you because your computer does not know whats best --- Make sure Enable Aero Peek is checked

Was this answer helpful?

100+ people found this answer helpful.
0 comments No comments
Answer accepted by question author
Anonymous
2009-11-16T20:35:40+00:00

Hi whsper,

Welcome to Microsoft Answers Community Forums.

The aero theme is basically enabled depending on video card.

Windows Display Driver Modelis the graphic driver architecture for video card drivers running Microsoft Windows versions beginning with Windows Vista.

WDDM driver model version 1.0 is that it does not support multiple drivers in a multi-adapter, multi-monitor setup, the latest version is 2.0 is introduced.

Windows will disable the Desktop Window Manager (DWM) that controls the transparent glass effect or other effects of the Aero theme. The DWM manages the desktop and the primary display settings in Windows.

I would suggest you to check with your manufacturer for latest drivers to support your hardware configuration.

Hope this information helped you.

Regards


Yaaser - Microsoft Support Engineer                                          

Visit our Microsoft Answers Feedback Forum and let us know what you think.

Was this answer helpful?

50+ people found this answer helpful.
0 comments No comments

138 additional answers

Sort by: Newest
  1. Anonymous
    2012-06-26T22:52:48+00:00

    no it does not.... i run dual hd radeon 3800's. i still have this issue. i have tried everything in these posts and still it reverts back to the crappy theme. i have the latest itunes, etc. just keeps on doing it. q6700 quad core, 16 gb ram, 2 gb ram for gpu, windows 7 x64. upgraded latest drivers from ati, etc. the only time it does not do it is when i run the windows drivers on my system for the ait cards. i run 4 screens.  total b.s. is there no other fix? cmon microsux....dont make me move everything to my ubuntu.

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2012-06-18T18:41:02+00:00

    The latest iTunes 10.6.3.25 fixes the isuue!

    Was this answer helpful?

    0 comments No comments
  3. Anonymous
    2012-06-18T06:51:41+00:00

    It's unlikely that Microsoft is going to fix this for Win7 since it doesn't affect security and doesn't seem to affect a huge number of users.  From their POV it's probably just not worth the risk.  With that in mind, I created a powershell script that monitors if Aero is enabled or not and will kill/restart the uxsms service (the service that runs Aero) if Windows (in its not-so-infinite wisdom) stops Aero.

    Note that this will cause the desktop to flash whenever Aero is disabled and re-enabled.  Some may find this more annoying, but I really like the transparency of Aero.

    Put this in a file named something like MonitorAero.ps1:

    (note you might have to run "powershell set-executionpolicy unrestricted" from a command prompt first)

    #requires -version 2

    param()

    add-type -namespace local -name Aero -memberdefinition @"

    [DllImport("dwmapi.dll", PreserveSig = false)]

    public static extern bool DwmIsCompositionEnabled();

    "@

    Function WriteTimestampedLine($line) {

    $timestamp = get-date -format G

    Write-Host $timestamp "-" $line

    }

    while ($true) {

    if ([Environment]::OSVersion.Version.Major -le 5) {

    WriteTimestampedLine "Aero is not available"

    } elseif ([local.aero]::DwmIsCompositionEnabled()) {

    WriteTimestampedLine "Aero is working fine"

    } else {

    WriteTimestampedLine "Aero is not enabled.. restarting the uxsms service"

    Restart-Service uxsms

    #Check again

    if ([local.aero]::DwmIsCompositionEnabled()) {

    WriteTimestampedLine "Aero recovered successfully"

    } else {

    WriteTimestampedLine "Aero could not be recovered"

    sleep 60

    }

    }

    sleep 1

    }

    Was this answer helpful?

    0 comments No comments