Posts Tagged ‘Aero’
How to enable Windows 7 Aero in Virtualbox
If you try to install a Windows 7 system in a Virtualbox you will notice that there is no 3D support there – no feature of Aero works and the Desktop is shown in the Aero fallback mode without transparency.
But if you have the latest version of Virtualbox installed there is something you can do about that – experimental 3D support is now available with the help of a guest addition. To install it, open your virtual Windows 7 box and select Device > Install Guest Additions… to start:
Wait a second for the next window to pop up and click Run VBoxWindowsAdditions.exe:
Follow the setup until you can choose what additions to install. Select Direct 3D support (experimental). As it says, it is experimental so you shouldn’t use it on production systems – make sure to have backups made of everything important:
When the warning appears, don’t click on Yes blindly – that will make you cancel the installation. Read instead and click on No:
Follow the last steps of the installer and restart your machine to find Aero working. It may lag at times but that is what you would expect in a virtual machine with limited resources:
Change to classic skin when unplugging notebook from power source in Windows
Windows 7 comes with the Aero skin by default which might look nice but consumes a great deal of resources – and with them, power. I have experienced a loss of up to two hours of battery life on my notebook when turning Aero on which one can get back by switching to the classic skin – that ugly gray one, that was used in the times before Windows XP.
It would be great if Windows provided an option to set a scheduled task to trigger on plugging or unplugging the power supply or to configure the power settings to change themes automatically but unfortunately we don’t have that luxury, so we have to do it ourselves, in a slightly less elegant way.
What you need is a small VBScript which you can find here and a PowerShell script which checks in what state the notebook battery is in. To create that script, open a new notepad and paste the following into it:
$sav = (Get-WmiObject -Class Win32_Battery -ea 0).BatteryStatus
while ($true)
{
start-sleep -s 5
if (((Get-WmiObject -Class Win32_Battery -ea 0).BatteryStatus -eq (1 -or 3 -or 4 -or 5 -or 10 -or 11)) -and ((Get-WmiObject -Class Win32_Battery -ea 0).BatteryStatus -ne $sav))
{
& ‘C:\Windows\Resources\Ease of Access Themes\Classic.theme‘
$sav = (Get-WmiObject -Class Win32_Battery -ea 0).BatteryStatus
}
else
{
if ((Get-WmiObject -Class Win32_Battery -ea 0).BatteryStatus -ne $sav)
{
& ‘C:\Windows\Resources\Themes\Aero.theme‘
$sav = (Get-WmiObject -Class Win32_Battery -ea 0).BatteryStatus
}}}
Adjust the paths printed bold to the location of the themes you want to use if you want different ones (the first one is the one that is applied on unplugging the supply, second is for replugging). Save the script as a .ps1 file. If you haven’t yet created the VBScript, do it now following the above link. Remember to adjust the path to the ps1 script used there to yours. If you now launch the VBScript the PowerShell script should be started silently. If you get an error or the script won’t start, you first have to configure your system to allow executing PowerShell scripts – see the instructions below the code provided here.
The locations of the themes are
C:\Windows\Resources\Ease of Access Themes for the classic styled themes.
C:\Windows\Resources\Themes for preconfigured Aero style themes and
C:\Users\[YourUsername]\AppData\Local\Microsoft\Windows\Themes for custom themes (the AppData folder is hidden by default).
To automate everything you can set the execution of your VBScript as a scheduled task. Do so by entering Task Scheduler into your Start-menu search bar. Set up the task for execution on start up if you want it to be run on every session.
Adjust Aero To Wallpaper Color on Windows 7
There is a tool called <em>Aero Adjuster</em> that works as a tray-icon in the taskbar and changes the colors of your Windows 7 Aero theme every time you change your wallpaper. Furthermore you also have the option to change brightness and/or to invert the colors, ignore black, white and grey tones and to only choose a specific region of the wallpaper (e.g. Top right, Bottom left).
It works automatically but can also be applied manually after changing options.
Download Aero Adjuster here: http://samusaranfreak.deviantart.com/art/Aero-Adjuster-261383189
Disabling Aero on Windows 7
The Windows 7 Aero desktop theme can cost you quite a lot of performance, which is why you might consider disabling it. To do so, open the Control Panel and select Appearance and Personalization:
Next go to Change the theme and scroll down to Windows Classic:
Disable Automatic Window Arrangement (Aero Snap, Windows 7)
The window arrangement feature in Windows 7 (the one that maximises windows to full- or half-screen when you drag them to the screen’s border) might appeal to many users, I however find it rather annoying than helpful.
Therefore I will show an option here that enables you to turn window arrangement off. Open the Windows Registry by entering regedit into a Run… prompt. On the left frame, browse the HKEY_CURRENT_USER\Control Panel\Desktop key and left-click it once. On the right frame, look for the WindowArrangementActive value – double-click it and change it from 1 to 0.
You may have to reboot your system, but afterwards window arrangement should be disabled.









