Updated the scripts

This commit is contained in:
Markus Fleschutz 2020-12-29 15:28:03 +00:00
parent 5c99f042c4
commit 8ace5fcff2
6 changed files with 18 additions and 15 deletions

View File

@ -6,4 +6,4 @@
.NOTES Author: Markus Fleschutz / License: CC0 .NOTES Author: Markus Fleschutz / License: CC0
#> #>
./close-program "chrome" ./close-program "chrome" "Google Chrome"

View File

@ -6,4 +6,4 @@
.NOTES Author: Markus Fleschutz / License: CC0 .NOTES Author: Markus Fleschutz / License: CC0
#> #>
./close-program "msedge" ./close-process "msedge" "Microsoft Edge"

View File

@ -6,4 +6,4 @@
.NOTES Author: Markus Fleschutz / License: CC0 .NOTES Author: Markus Fleschutz / License: CC0
#> #>
./close-program "explorer" ./close-process "explorer" "File Explorer"

View File

@ -1,31 +1,34 @@
#!/snap/bin/powershell #!/snap/bin/powershell
<# <#
.SYNTAX ./close-program.ps1 [<program-name>] .SYNTAX ./close-program.ps1 [<program-name>] [<full-program-name>]
.DESCRIPTION closes the given program gracefully .DESCRIPTION closes the processes of the given program gracefully
.LINK https://github.com/fleschutz/PowerShell .LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0 .NOTES Author: Markus Fleschutz / License: CC0
#> #>
param([string]$ProgramName) param([string]$ProgramName = "", [string]$FullProgramName = "")
try { try {
if ($ProgramName -eq "" ) { if ($ProgramName -eq "") {
Get-Process | Where-Object {$_.mainWindowTitle} | Format-Table Id, Name, mainWindowtitle -AutoSize get-process | where-object {$_.mainWindowTitle} | format-table Id, Name, mainWindowtitle -AutoSize
$ProgramName = read-host "Enter program to close" $ProgramName = read-host "Enter program name"
}
if ($FullProgramName -eq "") {
$FullProgramName = $ProgramName
} }
$Processes = Get-Process -name $ProgramName -erroraction 'silentlycontinue' $Processes = get-process -name $ProgramName -errorAction 'silentlycontinue'
foreach ($Process in $Processes) { foreach ($Process in $Processes) {
$_.CloseMainWindow() | Out-Null $_.CloseMainWindow() | Out-Null
} }
start-sleep -milliseconds 100 start-sleep -milliseconds 100
Stop-Process -name $ProgramName -force -erroraction 'silentlycontinue' stop-process -name $ProgramName -force -errorAction 'silentlycontinue'
$ProcessCount = $Processes.Count $ProcessCount = $Processes.Count
if ($ProcessCount -eq 0) { if ($ProcessCount -eq 0) {
throw "program '$ProgramName' is not started yet" throw "$FullProgramName is not started yet"
} }
write-output "OK - program '$ProgramName' with $ProcessCount process(es) has been closed." write-output "OK - $FullProgramName with $ProcessCount process(es) has been closed."
exit 0 exit 0
} catch { } catch {
write-error "ERROR in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])" write-error "ERROR in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"

View File

@ -6,4 +6,4 @@
.NOTES Author: Markus Fleschutz / License: CC0 .NOTES Author: Markus Fleschutz / License: CC0
#> #>
./close-program "thunderbird" ./close-program "thunderbird" "Mozilla Thunderbird"

View File

@ -6,4 +6,4 @@
.NOTES Author: Markus Fleschutz / License: CC0 .NOTES Author: Markus Fleschutz / License: CC0
#> #>
./close-program "WindowsTerminal" ./close-program "WindowsTerminal" "Windows Terminal"