I tried to find a solution to maximize all windows in Windows 7 but I haven't found one. I know that the win+d key will minimize and restore all windows, but this method doesn't restore windows after a window is clicked upon. Does someone know of an application that can force all windows on the taskbar to a maximized state?
-Smobu
Hi! I had a similar conundrum recently so I made this little AHK script to work around it. Too stoned to tailor it for your specific needs but it might be a good start-off point for you if you want to try Autohotkey. Try hitting Win+D a couple times and you'll see what the app does.
;;;;;; Show Desktop reroute into "miniimze all windows" to circumvent Samurize being hidden
#InstallKeybdHook
#NoTrayIcon
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
Menu, TRAY, Tip, KeyKey ; this is here in case I feel like showing the tray icon in the future
DesktopIsActive := 0
#d::
If (DesktopIsActive == 0)
{
WinGet, active_id, ID, A
If (active_id == 0)
{
MsgBox,,,No windows active on system
}
Else
{
DesktopIsActive := 1
Send, #m
}
}
Else If (DesktopIsActive == 1)
{
WinRestore, ahk_id %active_id%
DesktopIsActive := 0
}
Return