Renamed to open-notepad.exe and close-notepad.exe

This commit is contained in:
Markus Fleschutz
2024-05-29 18:28:42 +02:00
parent e447641434
commit 32347ab51d
3 changed files with 26 additions and 26 deletions

15
scripts/close-notepad.ps1 Executable file
View File

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