PowerShell/Scripts/close-paint-three-d.ps1

20 lines
405 B
PowerShell
Raw Normal View History

<#
.SYNOPSIS
Closes the Paint 3D app
.DESCRIPTION
This script closes the Paint 3D application gracefully.
.EXAMPLE
PS> ./close-paint-3d
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
2021-11-15 07:38:37 +01:00
$result = TaskKill /im PaintStudio.View.exe /f
if ($result -ne 0) {
& "$PSScriptRoot/speak-english.ps1" "Sorry, can't close Paint 3D"
exit 1
}
exit 0 # success