I share my screen a lot with colleagues. During sharing, it's advisable to turn off Aero as it generates much more graphics to send over the wire and causes delays in screen sharing. Some screen sharing apps actually do this for you, some don't.

I'm looking for a quick and convenient way to switch on\off Aero on Windows 7. Ultimately, if I could tie it to a hotkey, that would be best, but any widget \ tray-icon, desktop shortcut would do.

link|improve this question

49% accept rate
What software are you using that doesn't do this FOR YOU when you turn on screen sharing? :/ I can't think of any mainstream ones that don't support it by now. – Shinrai Nov 11 '10 at 15:28
feedback

2 Answers

up vote 4 down vote accepted

Create a batch file with the following content:

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

:sc_start
sc start uxsms
exit

Executing it will alternatively turn Aero on and off. You can place it anywhere you like. AFAIK it does not need to be executed as Admin.

link|improve this answer
feedback

You can try:

c:\> sc stop uxsms

c:\> sc start uxsms
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.