up vote 14 down vote favorite
7
share [g+] share [fb]

Ocassionally aero effects crash. Is there a way to re-enable the effects in Windows 7 after a crash happens?

i.e. restarting a service or terminatating a process and letting it restart automaticially or manually loading it?

Problem symptoms; in

Control Panel \ Appearance and Personalization \ Personalization

The standard "Window Color" option is not available it just appears as "Basic"

Reboot will solve this issue, but would like to avoid that if possible.

link|improve this question

sage- You need to run the command window elevated (right click, run as elevated). That will take care of the "Access denied" messages. – Bill Jan 18 at 10:45
feedback

4 Answers

up vote 23 down vote accepted

Restart DWM with:

net stop uxsms
net start uxsms

It's the same service that crashes and is also known as the Desktop Windows Manager.

link|improve this answer
feedback

"taskkill /f /im dwm.exe" always did it for me, though Diago's answer is cleaner. Killing the process should get the DWM's helper service to restart it pretty much right away.

link|improve this answer
feedback

For me, when that happens I also have a wrong screen resolution. After I set it to the right resolution, in the Settings I can chose Aero as the Design again.

link|improve this answer
feedback

None of these answers seems to work for me due to permissions perhaps. I am able to stop and restart the desktop window manager service by doing the following and this does accomplish the result:

  1. Start "Services" by typing Services into the search window. (I had done this previously by running a command I pulled off the web, but couldn't find it just now and got lucky with the search.)

  2. Stop the service "Desktop Window Manager Service Manager"

  3. Start the service "Desktop Window Manager Service Manager"

I think this is doing the same thing that @Diago recommended, but for some reason I get the following when I tried his solution:

C:\>net stop uxsms
System error 5 has occurred.

Access is denied.

C:\>net start uxsms
System error 5 has occurred.

Access is denied.

C:\>

With taskkill as recommended by @Phoshi, it didn't find the process:

C:\>taskkill /f /im dwm.exe
ERROR: The process "dwm.exe" not found.

C:\>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.