mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 17:14:28 +01:00
16 lines
295 B
PowerShell
Executable File
16 lines
295 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
close-vlc.ps1
|
|
.DESCRIPTION
|
|
Closes the VLC media player gracefully
|
|
.EXAMPLE
|
|
PS> ./close-vlc
|
|
.NOTES
|
|
Author: Markus Fleschutz · License: CC0
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
#>
|
|
|
|
& "$PSScriptRoot/close-program.ps1" "VLC media player" "vlc" "vlc"
|
|
exit 0 # success
|