PowerShell/Scripts/close-paint-three-d.ps1
Markus Fleschutz 2fdd975e96 Simple rename
2021-11-29 16:25:01 +01:00

20 lines
406 B
PowerShell

<#
.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
#>
TaskKill /im PaintStudio.View.exe /f
if ($lastExitCode -ne "0") {
& "$PSScriptRoot/speak-english.ps1" "Sorry, Paint 3D isn't running."
exit 1
}
exit 0 # success