mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-02-21 20:21:21 +01:00
16 lines
306 B
PowerShell
16 lines
306 B
PowerShell
|
<#
|
|||
|
.SYNOPSIS
|
|||
|
Closes the Microsoft Paint app
|
|||
|
.DESCRIPTION
|
|||
|
This script closes the Microsoft Paint application gracefully.
|
|||
|
.EXAMPLE
|
|||
|
PS> ./close-microsoft-paint
|
|||
|
.NOTES
|
|||
|
Author: Markus Fleschutz · License: CC0
|
|||
|
.LINK
|
|||
|
https://github.com/fleschutz/PowerShell
|
|||
|
#>
|
|||
|
|
|||
|
taskkill /im mspaint.exe
|
|||
|
exit 0 # success
|