PowerShell/Scripts/open-notepad.ps1
2021-10-23 16:29:54 +02:00

21 lines
376 B
PowerShell
Executable File

<#
.SYNOPSIS
Starts Notepad
.DESCRIPTION
This script starts Notepad.
.EXAMPLE
PS> ./open-notepad
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
try {
start-process notepad.exe
exit 0 # success
} catch {
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}