PowerShell/scripts/close-note-pad.ps1

16 lines
337 B
PowerShell
Raw Normal View History

2023-10-31 12:12:58 +01:00
<#
.SYNOPSIS
Closes the Notepad app
.DESCRIPTION
2022-01-29 12:47:46 +01:00
This PowerShell script closes the Notepad application gracefully.
.EXAMPLE
2023-08-06 21:35:36 +02:00
PS> ./close-note-pad.ps1
.LINK
https://github.com/fleschutz/PowerShell
2022-01-29 12:47:46 +01:00
.NOTES
2022-09-06 21:42:04 +02:00
Author: Markus Fleschutz | License: CC0
#>
2021-11-23 22:12:27 +01:00
& "$PSScriptRoot/close-program.ps1" "Notepad" "notepad" "notepad"
exit 0 # success