PowerShell/Scripts/open-thunderbird.ps1
Markus Fleschutz 06d3c1c03d Simpe rename
2021-11-29 10:44:26 +01:00

16 lines
349 B
PowerShell

<#
.SYNOPSIS
Launches the Thunderbird app
.DESCRIPTION
This script launches the Mozilla Thunderbird email application.
.EXAMPLE
PS> ./open-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