I'm familiar with windows-d to show desktop but sometimes I just want to minimise two or three windows as they become active and not the whole lot.

Running Vista if that makes a difference.

Cheers.

link|improve this question
feedback

3 Answers

up vote 6 down vote accepted

I've been using the shortcut Alt-Space followed by N for years. Works on any Windows version, all the way back to Windows 3.0!

link|improve this answer
feedback

according to microsoft support, there isn't one, but it is easily scripted in autoit.

EDIT: Below is a very very basic sample of how to accomplish a hotkey to minimize the focused window, fully commented.

#include <WinApi.au3> ;include winAPI library

HotKeySet("!M",'_MinimizeActive') ;sets hotkey to Alt+Shift+m to trigger function

While 1 ;loop to keep alive

WEnd

Func _MinimizeActive()
    Local $v_Wnd, $w_Wnd ;declare variables
    $v_Wnd = _WinAPI_GetFocus() ;get focused window
    $w_Wnd = WinGetHandle($v_Wnd) ;get handle of focused window
    WinSetState($w_Wnd,"",@SW_MINIMIZE) ;minimize focused window
EndFunc
link|improve this answer
Thanks for the quick answer, the link the Microsoft hotkeys, and what looks like a free solution! – Ionise Sep 16 '10 at 4:35
just added a basic template for what you're looking for, coded in autoit. – MaQleod Sep 16 '10 at 5:09
feedback

I know that in Windows 7 you can minimize the currently active window with the shortcut: Windows Key + Down Arrow Key. This may be an Aero feature that works with Vista as well. Let me know if it works!

link|improve this answer
1  
Note that you have to have Aero Snap enabled for this to work. – Sasha Chedygov Sep 16 '10 at 5:54
Do you mean this: aerosnap.de/index_eng.htm ? Even with this on vista windows-down arrow only seems to work with about half the windows. alt-space n is a lot more reliable. – Ionise Sep 17 '10 at 1:11
feedback

Your Answer

 
or
required, but never shown

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