PowerShell/Scripts/close-firefox.ps1

16 lines
308 B
PowerShell
Raw Normal View History

2021-08-26 10:46:12 +02:00
<#
2021-08-17 20:02:48 +02:00
.SYNOPSIS
close-firefox.ps1
.DESCRIPTION
2021-08-29 17:50:03 +02:00
Closes the Firefox Web browser gracefully.
2021-08-17 20:02:48 +02:00
.EXAMPLE
PS> .\close-firefox.ps1
2021-08-29 17:50:03 +02:00
.NOTES
Author: Markus Fleschutz · License: CC0
2021-08-17 20:02:48 +02:00
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/close-program.ps1" "Mozilla Firefox" "firefox" "firefox"
exit 0