mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-01-16 19:09:04 +01:00
16 lines
342 B
PowerShell
16 lines
342 B
PowerShell
|
<#
|
|||
|
.SYNOPSIS
|
|||
|
Closes the Task Manager
|
|||
|
.DESCRIPTION
|
|||
|
This script closes the Task Manager application gracefully.
|
|||
|
.EXAMPLE
|
|||
|
PS> ./close-task-manager
|
|||
|
.NOTES
|
|||
|
Author: Markus Fleschutz · License: CC0
|
|||
|
.LINK
|
|||
|
https://github.com/fleschutz/PowerShell
|
|||
|
#>
|
|||
|
|
|||
|
& "$PSScriptRoot/close-program.ps1" "Task Manager" "Taskmgr" "Taskmgr.exe"
|
|||
|
exit 0 # success
|