<# .SYNOPSIS Closes the Task Manager .DESCRIPTION This PowerShell script closes the Task Manager application gracefully. .EXAMPLE PS> ./close-task-manager .LINK https://github.com/fleschutz/PowerShell .NOTES Author: Markus Fleschutz / License: CC0 #> tskill taskmgr exit 0 # success