PowerShell/Scripts/open-calculator-app.ps1
2021-11-21 12:01:30 +01:00

21 lines
420 B
PowerShell
Executable File

<#
.SYNOPSIS
Launches the calculator app
.DESCRIPTION
This script launches the calculator application.
.EXAMPLE
PS> ./open-calculator-app
.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
}