mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 00:54:04 +01:00
16 lines
296 B
PowerShell
Executable File
16 lines
296 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
Closes the Task Manager
|
|
.DESCRIPTION
|
|
This PowerShell script closes the Task Manager application gracefully.
|
|
.EXAMPLE
|
|
PS> ./close-task-manager.ps1
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
.NOTES
|
|
Author: Markus Fleschutz | License: CC0
|
|
#>
|
|
|
|
tskill taskmgr
|
|
exit 0 # success
|