mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-14 20:14:00 +01:00
16 lines
356 B
PowerShell
16 lines
356 B
PowerShell
|
#!/snap/bin/powershell
|
||
|
|
||
|
# Syntax: ./open-email-client.ps1
|
||
|
# Description: starts the default email client
|
||
|
# Author: Markus Fleschutz
|
||
|
# Source: github.com/fleschutz/PowerShell
|
||
|
# License: CC0
|
||
|
|
||
|
try {
|
||
|
Start-Process "mailto:markus@fleschutz.de"
|
||
|
exit 0
|
||
|
} catch {
|
||
|
Write-Error "ERROR in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||
|
exit 1
|
||
|
}
|