Tag Archives: Windows 7

Program Files

Mental note: In Windows 7, do not install android SDK (and maybe also eclipse) inside Program Files folder, because if you do, you’ll need administrator rights whenever you want to update.

Posted in English | Tagged , , | Leave a comment

Switch Windows 7 Aero On / Off

I use this in a .bat to switch the Windows 7 Aero theme On / Off. @echo off sc interrogate uxsms | find “1062″ if %errorlevel%==0 goto :sc_start sc stop uxsms exit :sc_start sc start uxsms exit

Posted in General | Tagged , , , , | 1 Comment