PowerShell/Scripts/open-calculator.ps1
2021-10-16 16:50:10 +02:00

21 lines
406 B
PowerShell
Executable File

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