mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-02-02 10:59:14 +01:00
Add open-mozilla-thunderbird.ps1
This commit is contained in:
parent
07f46cb36a
commit
e9abedaf1e
@ -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
|
15
Scripts/open-mozilla-thunderbird.ps1
Normal file
15
Scripts/open-mozilla-thunderbird.ps1
Normal 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
|
Loading…
Reference in New Issue
Block a user