Simpe rename

This commit is contained in:
Markus Fleschutz
2021-11-29 10:44:26 +01:00
parent 07444ceb70
commit 06d3c1c03d
16 changed files with 19 additions and 19 deletions

20
Scripts/open-calculator.ps1 Executable file
View File

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