PowerShell/Scripts/open-email-client.ps1

21 lines
386 B
PowerShell
Raw Normal View History

2020-12-29 15:14:21 +01:00
<#
2021-07-13 21:10:02 +02:00
.SYNOPSIS
open-email-client.ps1
.DESCRIPTION
Starts the default email client
.EXAMPLE
PS> .\open-email-client.ps1
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
2020-12-29 15:14:21 +01:00
#>
try {
2021-03-22 20:10:18 +01:00
start-process "mailto:markus@fleschutz.de"
exit 0
} catch {
2021-05-02 21:30:48 +02:00
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}