PowerShell/Scripts/close-firefox.ps1
2021-10-16 16:50:10 +02:00

16 lines
351 B
PowerShell
Executable File

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