<#
.SYNOPSIS
	close-edge.ps1 
.DESCRIPTION
	Closes the Web browser Microsoft Edge gracefully.
.EXAMPLE
	PS> .\close-edge.ps1
.NOTES
	Author: Markus Fleschutz ยท License: CC0
.LINK
	https://github.com/fleschutz/PowerShell
#>

& "$PSScriptRoot/close-program.ps1" "Microsoft Edge" "msedge" "msedge"
exit 0