Files
PowerShell/scripts/install-thunderbird.ps1
2025-07-09 14:33:56 +02:00

28 lines
594 B
PowerShell
Executable File

<#
.SYNOPSIS
Installs Thunderbird
.DESCRIPTION
This PowerShell script installs Mozilla Thunderbird.
.EXAMPLE
PS> ./install-thunderbird.ps1
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
#requires -version 5.1
try {
"Installing Mozilla Thunderbird, please wait..."
& winget install --id Mozilla.Thunderbird --accept-package-agreements --accept-source-agreements
if ($lastExitCode -ne 0) { throw "'winget install' failed" }
"Mozilla Thunderbird installed successfully."
exit 0 # success
} catch {
"Sorry: $($Error[0])"
exit 1
}