PowerShell/Scripts/open-calculator.ps1
Markus Fleschutz 06d3c1c03d Simpe rename
2021-11-29 10:44:26 +01:00

21 lines
424 B
PowerShell
Executable File

<#
.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
}