PowerShell/Scripts/open-email-client.ps1

22 lines
389 B
PowerShell
Raw Normal View History

2021-08-26 10:46:12 +02: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
2021-08-03 15:53:57 +02:00
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
}