PowerShell/Scripts/open-calculator.ps1
2022-01-29 12:47:46 +01:00

21 lines
434 B
PowerShell
Executable File

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