Added open-calculator.ps1

This commit is contained in:
Markus Fleschutz
2021-01-09 12:46:08 +01:00
parent 77df424774
commit ff71979ba9
3 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,15 @@
#!/snap/bin/powershell
<#
.SYNTAX ./open-calculator.ps1
.DESCRIPTION starts the calculator program
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
try {
start-process calc.exe
exit 0
} catch {
write-error "ERROR in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}