PowerShell/Scripts/close-firefox-browser.ps1
2021-11-21 11:51:43 +01:00

16 lines
351 B
PowerShell
Executable File

<#
.SYNOPSIS
Closes the Firefox browser
.DESCRIPTION
This script closes the Mozilla Firefox Web browser gracefully.
.EXAMPLE
PS> ./close-firefox-browser
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/close-program.ps1" "Mozilla Firefox" "firefox" "firefox"
exit 0 # success