2021-09-27 10:38:12 +02:00
|
|
|
|
<#
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.SYNOPSIS
|
2021-09-24 17:19:49 +02:00
|
|
|
|
close-program.ps1 [<FullProgramName>] [<ProgramName>] [<ProgramAliasName>]
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.DESCRIPTION
|
2021-09-24 17:19:49 +02:00
|
|
|
|
Closes the processes of the given program gracefully
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.EXAMPLE
|
2021-09-24 17:19:49 +02:00
|
|
|
|
PS> ./close-program "Google Chrome" "chrome.exe"
|
2021-08-29 17:50:03 +02:00
|
|
|
|
.NOTES
|
|
|
|
|
Author: Markus Fleschutz · License: CC0
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
2020-12-29 15:14:21 +01:00
|
|
|
|
#>
|
2020-12-27 11:02:20 +01:00
|
|
|
|
|
2021-07-15 15:51:22 +02:00
|
|
|
|
param([string]$FullProgramName = "", [string]$ProgramName = "", [string]$ProgramAliasName = "")
|
2020-12-28 10:23:17 +01:00
|
|
|
|
|
2021-02-18 20:17:55 +01:00
|
|
|
|
try {
|
2021-07-15 15:51:22 +02:00
|
|
|
|
if ($ProgramName -eq "") {
|
|
|
|
|
get-process | where-object {$_.mainWindowTitle} | format-table Id, Name, mainWindowtitle -AutoSize
|
|
|
|
|
$ProgramName = read-host "Enter program name"
|
|
|
|
|
}
|
|
|
|
|
if ($FullProgramName -eq "") {
|
|
|
|
|
$FullProgramName = $ProgramName
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-29 16:28:03 +01:00
|
|
|
|
$Processes = get-process -name $ProgramName -errorAction 'silentlycontinue'
|
2021-02-13 16:36:47 +01:00
|
|
|
|
if ($Processes.Count -ne 0) {
|
|
|
|
|
foreach ($Process in $Processes) {
|
|
|
|
|
$Process.CloseMainWindow() | Out-Null
|
|
|
|
|
}
|
|
|
|
|
start-sleep -milliseconds 100
|
|
|
|
|
stop-process -name $ProgramName -force -errorAction 'silentlycontinue'
|
|
|
|
|
} else {
|
2020-12-28 10:23:17 +01:00
|
|
|
|
|
2021-02-13 16:36:47 +01:00
|
|
|
|
$Processes = get-process -name $ProgramAliasName -errorAction 'silentlycontinue'
|
|
|
|
|
if ($Processes.Count -eq 0) {
|
|
|
|
|
throw "$FullProgramName is not started yet"
|
|
|
|
|
}
|
|
|
|
|
foreach ($Process in $Processes) {
|
|
|
|
|
$_.CloseMainWindow() | Out-Null
|
|
|
|
|
}
|
|
|
|
|
start-sleep -milliseconds 100
|
|
|
|
|
stop-process -name $ProgramName -force -errorAction 'silentlycontinue'
|
2020-12-27 11:02:20 +01:00
|
|
|
|
}
|
2021-08-17 20:05:57 +02:00
|
|
|
|
"✔️ closed $FullProgramName, stopped $($Processes.Count) process(es)"
|
2021-09-27 10:09:45 +02:00
|
|
|
|
exit 0 # success
|
2020-12-27 11:02:20 +01:00
|
|
|
|
} catch {
|
2021-09-16 20:19:10 +02:00
|
|
|
|
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
|
2020-12-27 11:02:20 +01:00
|
|
|
|
exit 1
|
|
|
|
|
}
|