Add several open-* scripts

This commit is contained in:
Markus Fleschutz
2021-10-28 14:30:17 +02:00
parent 1a172841cb
commit 37b937af7a
8 changed files with 136 additions and 1 deletions

View File

@ -0,0 +1,20 @@
<#
.SYNOPSIS
Launches the Microsoft Paint app
.DESCRIPTION
This script launches the Microsoft Paint application.
.EXAMPLE
PS> ./open-microsoft-paint
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
try {
start-process ms-paint:
exit 0 # success
} catch {
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}