PowerShell/Scripts/open-thunderbird-app.ps1

16 lines
353 B
PowerShell
Raw Normal View History

2021-11-06 11:52:58 +01:00
<#
.SYNOPSIS
Launches the Thunderbird app
2021-11-06 11:52:58 +01:00
.DESCRIPTION
This script launches the Mozilla Thunderbird email application.
2021-11-06 11:52:58 +01:00
.EXAMPLE
PS> ./open-thunderbird-app
2021-11-06 11:52:58 +01:00
.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