WinMaximize

ウィンドウを最大化する。

WinMaximize [, WinTitle, WinText, ExcludeTitle, ExcludeText]

Parameters

引数名説明
WinTitle ウィンドウタイトルなど。
ウィンドウ指定の方法参照。
WinText ウィンドウに含まれるテキスト
ExcludeTitle 除外タイトル
ExcludeText 除外テキスト

Remarks

最大化したウィンドウを元に戻すには、WinRestoreコマンドを使う。

一部のウィンドウはこの方法では最大化できない。
以下の方法を使うと最大化できる場合がある。

PostMessage, 0x112, 0xF030,,, WinTitle, WinText ; 0x112 = WM_SYSCOMMAND, 0xF030 = SC_MAXIMIZE

Related

WinRestore, WinMinimize

Example(s)

Run, notepad.exe
WinWait, Untitled - Notepad
WinMaximize ; use the window found above


^Up::WinMaximize, A  ; Assign a hotkey to maximize the active window.