mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-12-01 04:13:42 +01:00
16 lines
307 B
PowerShell
16 lines
307 B
PowerShell
|
<#
|
|||
|
.SYNOPSIS
|
|||
|
Closes Spotify
|
|||
|
.DESCRIPTION
|
|||
|
This script closes the Spotify application gracefully.
|
|||
|
.EXAMPLE
|
|||
|
PS> ./close-spotify
|
|||
|
.NOTES
|
|||
|
Author: Markus Fleschutz · License: CC0
|
|||
|
.LINK
|
|||
|
https://github.com/fleschutz/PowerShell
|
|||
|
#>
|
|||
|
|
|||
|
& "$PSScriptRoot/close-program.ps1" "Spotify" "spotify" ""
|
|||
|
exit 0 # success
|