<# .SYNOPSIS Starts the calculator app .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 }