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

16 lines
323 B
PowerShell
Executable File

<#
.SYNOPSIS
Closes the Notepad app
.DESCRIPTION
This script closes the Notepad application gracefully.
.EXAMPLE
PS> ./close-note-pad
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/close-program.ps1" "Notepad" "notepad" "notepad"
exit 0 # success