PowerShell/scripts/minimize-all-windows.ps1

22 lines
438 B
PowerShell
Raw Normal View History

2023-10-31 12:48:22 +01:00
<#
2022-06-09 16:20:56 +02:00
.SYNOPSIS
Minimizes all windows
.DESCRIPTION
This PowerShell script minimizes all open windows.
.EXAMPLE
2023-08-06 21:35:36 +02:00
PS> ./minimize-all-windows.ps1
2022-06-09 16:20:56 +02:00
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
try {
$shell = New-Object -ComObject "Shell.Application"
$shell.minimizeall()
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
2023-08-06 21:35:36 +02:00
}