Add open-mozilla-thunderbird.ps1

This commit is contained in:
Markus Fleschutz 2021-11-06 11:52:58 +01:00
parent 07f46cb36a
commit e9abedaf1e
2 changed files with 15 additions and 15 deletions

View File

@ -1,15 +0,0 @@
<#
.SYNOPSIS
Closes the Mozilla Thunderbird email client
.DESCRIPTION
This script closes the Mozilla Thunderbird email client gracefully.
.EXAMPLE
PS> ./close-thunderbird
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/close-program.ps1" "Mozilla Thunderbird" "thunderbird" "thunderbird"
exit 0 # success

View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Launches Mozilla Thunderbird
.DESCRIPTION
This script launches the Mozilla Thunderbird email client.
.EXAMPLE
PS> ./open-mozilla-thunderbird
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
Start-Process "C:\Program Files (x86)\Mozilla Thunderbird\thunderbird.exe"
exit 0 # success