PowerShell/Scripts/close-task-manager.ps1

16 lines
292 B
PowerShell
Raw Normal View History

2021-10-21 16:23:59 +02:00
<#
.SYNOPSIS
Closes the Task Manager
.DESCRIPTION
2022-01-29 12:47:46 +01:00
This PowerShell script closes the Task Manager application gracefully.
2021-10-21 16:23:59 +02:00
.EXAMPLE
PS> ./close-task-manager
.LINK
https://github.com/fleschutz/PowerShell
2022-01-29 12:47:46 +01:00
.NOTES
2022-09-06 21:42:04 +02:00
Author: Markus Fleschutz | License: CC0
2021-10-21 16:23:59 +02:00
#>
2021-11-25 17:00:36 +01:00
tskill taskmgr
2021-10-21 16:23:59 +02:00
exit 0 # success