Direct shortcut for Windows Maximize/Minimize/Restore window?

240,374

Solution 1

From Help Docs on Keyboard shortcuts in Windows:

Shortcut Action
Win+D Display the desktop.
Win+M Minimize all windows.
Win+Shift+M Restore minimized windows to the desktop.
Win+ Maximize the window.
Win+ Maximize the window to the left side of the screen.
Win+ Maximize the window to the right side of the screen.
Win+ Minimize the window.
Win+Home Minimize all but the active window.
Win+Shift+ Stretch the window to the top and bottom of the screen.

Solution 2

Currently as per my experience in Windows 10:

Restore Down The Maximized Window OR Minimize The Restored Window
Win + Down Arrow

Minimize The Maximized Window
Win + Down Arrow (twice)

Maximize The Restored Window
Win + Up Arrow

Solution 3

I was looking for the same thing, and I want to refer to an answer by Sam Hasler who made an AutoHotKey script that adds a shortcut for that task.

In short, this is the script (you need ahk) - just save it as an .ahk file and put it in the startup folder (open it with shell:startup from the Run):

;=========================================================;
; WINDOWS KEY + Alt + Down  --  Minimizies Active window
;=========================================================;
; instead of "Restore Down" for Win+Down

#!Down::WinMinimize, A

For more details, go to the referred answer.

Solution 4

If you are using Powertoys Fancyzones, you have to set the setting PowerToys->FancyZones->Override Windows Snap->"Move windows based on: Zone index" to be able to maximize/minimize using Win+Up/Down.

There is an open feature request to be able to maximize while using the setting "Move windows based on: Relative Position".

Share:
240,374

Related videos on Youtube

Shimmy Weitzhandler
Author by

Shimmy Weitzhandler

Updated on September 18, 2022

Comments

  • Shimmy Weitzhandler
    Shimmy Weitzhandler over 1 year

    Is there a direct shortcut for maximizing/minimizing/restoring current window in Windows (10)?

    I know I can press Alt+Space and then use the arrows to navigate and select, but I looking for a direct shortcut.

    • Bitterblue
      Bitterblue about 4 years
      Actually you can Alt+Space, X to maximize etc. No need for arrow keys and navigation.
  • user
    user over 8 years
    The Win+Down was a new one to me. I have always used Alt+Space, n (because n is the hotkey for Minimize), but this is language-dependent.
  • mtness
    mtness over 6 years
    Win+Down doesn't minimize a maximized window to tray directly, it first "unsnaps" the window, you have to press again for the window to be minimized to tray.
  • Alfie Anil
    Alfie Anil over 5 years
    ^^ This. and then if you double-tap the down-arrow, it means it will only restore back to a floating-window. Wish there was a single-tap combo to always minimise.
  • Darkov
    Darkov over 4 years
    A quick edit with the same commands for Linux would be greatly appreciated here.
  • Sam Rueby
    Sam Rueby almost 4 years
    There's a lovely powertoy now that can help you learn these shortcuts: github.com/microsoft/PowerToys/tree/master/src/modules/…
  • RogUE
    RogUE almost 4 years
    @Darkov That would be very difficult. Linux has several window managers and desktop environments, and in my experience not all of them come with a lot of keyboard shortcuts preconfigured, but offer ways to configure them by the user.
  • Andy Fraley
    Andy Fraley almost 4 years
    I think the drawback to these hot keys is that they aren't one handed. I'm not sure if there's a similar Windows tool, but Spectacle on OSX has simple one handed shortcuts for window management that are much quicker to press, and you don't have to take a hand off the mouse. For example cmd+option+f to maximize a window.
  • Manngo
    Manngo about 2 years
    I use Windows in a virtual machine on my Mac. I am always pressing <kbd>⌘←</kbd> to go to the beginning of the line, only to find the window moving to the left of the screen. The <kbd>Win↑</kbd> will be a great help. BTW I find that I have to do that in two steps: the first time moves the window to the top left corner.
  • Admin
    Admin almost 2 years
    does not seem to work anymore? at least with "Move windows based on: Relative Position"
  • Admin
    Admin almost 2 years
    @gooleem Same. If you go into powertoys settings->fancyzones->override windows snap->move windows based on: Zone Index, then maximizing using windows shortcuts works. If you still want to move by relative position, there is an open feature request for that. I will update the answer.