Aar*_*thi 17 windows windows-7 keyboard-shortcuts
我知道WinKey+M和Winkey+D基本上会最小化所有窗口并显示我的桌面。但是,我一直无法找到一个类似的快捷键来最大化或恢复所有窗口。在 Windows 7 中是否有预先存在的方法来执行此操作?如果没有必要,我宁愿不去弄弄 BiOS。
小智 10
Windows Task Manager( Ctrl+ Shift+ Esc)。Applications选择了选项卡。Windows,然后选择Maximize。无论当前状态如何,这都会最大化所有窗口。
好吧,我怀疑这是否真的是您正在寻找的答案,但在 Windows 7 上,您可以将其保存为 powershell 脚本的某处:
$dllInfo = '[DllImport("user32.dll")] public static extern bool ShowWindowAsync(IntPtr hWnd, int nCmdShow);'
Add-Type -MemberDefinition $dllInfo -name NativeMethods -namespace Win32
foreach($proc in Get-Process){
$hwnd = $proc.MainWindowHandle
# Restore window
[Win32.NativeMethods]::ShowWindowAsync($hwnd, 4) | Out-Null
}
Run Code Online (Sandbox Code Playgroud)
然后绑定一个键来运行该脚本。
| 归档时间: |
|
| 查看次数: |
28883 次 |
| 最近记录: |