Has Microsoft Ever Learned That Some Users Want "Open Maximized" as a Default


baumgrenze

Active member
Member
Local time
3:01 PM
Posts
14
OS
win11/pro
Windows 11 launched on 10/5/21, almost five years ago.

Am I the only user who is frustrated by the default setting that occasionally opens so that the page must first be selected, dragged left, and then maximized because the maximized option is off screen to the right?

Perhaps I failed to find it, but has MS developed a way to reset the default behavior of Win11 so that the screen is maximized?

Thanks
baumgrenze
 

My Computer

System One

  • OS
    win11/pro
    Computer type
    PC/Desktop
    Manufacturer/Model
    gamepc/custom
    CPU
    Intel Core i7-9700K
    Motherboard
    ASRock Z390 Taichi Ultimate//ASRK
    Memory
    Kingston HyperX DDR4-3000 4 x 16 GB
    Graphics Card(s)
    ASUS TUF-GTX1660-06G
    Sound Card
    Roland Edirol UA-1AX
    Monitor(s) Displays
    Acer V277 bmix
    Screen Resolution
    1920 x 1080
    Hard Drives
    Samsung 970 Pro NVMe M.2 512 GB SSD (Sys/Prog)
    Crucial CT2000MX500SSD1 MX500 2TB (Data)
    PSU
    Silverstone ST65F_PT 650W
    Case
    Fractal Design Define R5 Black
    Keyboard
    Dell SK
    Mouse
    HPX4000
    Internet Speed
    Community Wireless 268 Mbps down/ 230 up
    Browser
    SeaMonkey
    Antivirus
    Windows
Set what to maximize?

Also from Properties of shortcut you can run maximized any app.
 

My Computer

System One

  • OS
    Windows 11
    Computer type
    PC/Desktop
    Manufacturer/Model
    HP Pavilion
    CPU
    AMD Ryzen 7 5700G
    Motherboard
    Erica6
    Memory
    Micron Technology DDR4-3200 16GB
    Graphics Card(s)
    NVIDIA GeForce RTX 3060
    Sound Card
    Realtek ALC671
    Monitor(s) Displays
    Samsung SyncMaster U28E590
    Screen Resolution
    3840 x 2160
    Hard Drives
    SAMSUNG MZVLQ1T0HALB-000H1
there doesn't seem to be a default way to maximize all windows
you can create a short cut and have that set to maximize
but there is this program 'maximize always'

i have never used this so i cant comment on it.
best of luck Steve ..
 

My Computers

System One System Two

  • OS
    Debian 13 KDE .. Windows 11 Home
    Computer type
    PC/Desktop
    Manufacturer/Model
    HP 24" AiO
    CPU
    Ryzen 7 5825u
    Motherboard
    HP
    Memory
    64GB DDR4 3200
    Graphics Card(s)
    Ryzen 7 5825u
    Sound Card
    RealTek
    Monitor(s) Displays
    24" HP AiO
    Screen Resolution
    1920 x 1080 @60 Hz
    Hard Drives
    1TB WD Blue SN580 M2 SSD Partitioned.
    2x 1TB USB HDD External Backup/Storage.
    PSU
    90W external power brick
    Case
    24" All in One
    Cooling
    Default Air Cooling
    Keyboard
    HP WiFi UK extended
    Mouse
    HP WiFi 3 Button
    Internet Speed
    1GB full fibre
    Browser
    Edge & Firefox
    Antivirus
    AVG Internet Security/Windows Defender
    Other Info
    Mainly Open Source Software
  • Operating System
    Ubuntu 22.04.5 LTS
    Computer type
    Laptop
    Manufacturer/Model
    Dell 13" Latitude 2017
    CPU
    i5 7200u
    Motherboard
    Dell
    Memory
    16GB DDR4
    Graphics card(s)
    Intel
    Sound Card
    Intel
    Monitor(s) Displays
    13" Dell Laptop
    Hard Drives
    250GB Crucial 2.5" SSD
    Mouse
    Generic WiFi 3 button
    Internet Speed
    WiFi only
    Browser
    Firefox
    Antivirus
    ClamAV TK
    Other Info
    Mainly Open Source Software
Also from Properties of shortcut you can run maximized any app.
win+up arrow will also maximize them.

but there is this program 'maximize always'
tested this just now on a win 11 25h2. has issues with explorer.exe... also its crap lol

Perhaps I failed to find it, but has MS developed a way to reset the default behavior of Win11 so that the screen is maximized?
not that i know of, but here is an ahk script that will maximize everything (that can be maximized naturally) upon first launch (meaning that if you unmax it, it will not auto remax until you close it and launch again... but can be remax manually of course). i have provided the script that runs Elevated (elevation allows it to work on regedit, task manager, etc) and the Non-Elevated version. if you want this to run at startup WITHOUT any prompt, etc for elevated permissions, use the non-elevated version and create an elevated shortcut to it

1) using winaerotweaker
1781542577014.webp

or

2) manually do it via task scheduler yourself

place that elevated shortcut in Shell:Startup folder for it to run at logon

**Because this is a custom script compiled to exe (the attached file(s), you may have to allow it in Windows Defender or other AVs**

Admin Script:

Code:
; --- Auto‑elevate to run as Administrator ---
if !A_IsAdmin
{
    Run *RunAs "%A_AhkPath%" "%A_ScriptFullPath%"
    ExitApp
}
; --------------------------------------------

#SingleInstance Force
#Persistent
SetTitleMatchMode, 2

DllCall("RegisterShellHookWindow", "UInt", A_ScriptHwnd)
MsgNum := DllCall("RegisterWindowMessage", "Str", "SHELLHOOK")

OnMessage(MsgNum, "ShellEvent")

ShellEvent(wParam, lParam) {
    if (wParam = 1) { ; HSHELL_WINDOWCREATED
        hwnd := lParam

        WinGet, style, Style, ahk_id %hwnd%
        if (style & 0x10000) { ; WS_MAXIMIZEBOX
            SetTimer, __MaximizeWindow, -50
            __MaximizeWindow:
                WinMaximize, ahk_id %hwnd%
            return
        }
    }
}
return

Non-Elevated Script:
Code:
#SingleInstance Force
#Persistent
SetTitleMatchMode, 2

DllCall("RegisterShellHookWindow", "UInt", A_ScriptHwnd)
MsgNum := DllCall("RegisterWindowMessage", "Str", "SHELLHOOK")

OnMessage(MsgNum, "ShellEvent")

ShellEvent(wParam, lParam) {
    if (wParam = 1) { ; HSHELL_WINDOWCREATED
        hwnd := lParam

        WinGet, style, Style, ahk_id %hwnd%
        if (style & 0x10000) { ; WS_MAXIMIZEBOX
            SetTimer, __MaximizeWindow, -50
            __MaximizeWindow:
                WinMaximize, ahk_id %hwnd%
            return
        }
    }
}
return
 

Attachments

My Computer

System One

  • OS
    Windows 11 Pro
Perhaps I failed to find it, but has MS developed a way to reset the default behavior of Win11 so that the screen is maximized?

You won't find it; it's not there. It's up to each developer whether they want to support minimizing, maximizing, or resizing of any sort. It's also up to the developer to save/restore window positions and sizes. Firefox is notoriously bad at the latter.
 

My Computer

System One

  • OS
    Windows 11 Pro 25H2
    Computer type
    PC/Desktop
    Manufacturer/Model
    Intel NUC12WSHi7
    CPU
    12th Gen Core i7-1260P
    Motherboard
    NUC12WSBi7
    Memory
    64 GB Micron PC4-25600
    Graphics Card(s)
    Intel Iris Xe Graphics
    Sound Card
    on-board Realtek HD Audio
    Monitor(s) Displays
    Dell U3219Q
    Screen Resolution
    3840 x 2160
    Hard Drives
    Samsung SSD 990 PRO 1TB
    Crucial MX500 2 TB
    Antivirus
    Microsoft Defender
Back
Top Bottom