1
0
mirror of https://github.com/fleschutz/PowerShell.git synced 2024-12-16 03:30:39 +01:00
PowerShell/Scripts/close-note-pad.ps1
2022-09-06 21:42:04 +02:00

16 lines
333 B
PowerShell
Executable File

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