2024-10-01 15:11:03 +02:00
|
|
|
|
<#
|
2021-10-23 17:47:07 +02:00
|
|
|
|
.SYNOPSIS
|
2022-11-13 18:04:32 +01:00
|
|
|
|
Closes Spotify
|
2021-10-23 17:47:07 +02:00
|
|
|
|
.DESCRIPTION
|
2022-01-29 12:47:46 +01:00
|
|
|
|
This PowerShell script closes the Spotify application gracefully.
|
2021-10-23 17:47:07 +02:00
|
|
|
|
.EXAMPLE
|
2023-08-06 21:35:36 +02:00
|
|
|
|
PS> ./close-spotify.ps1
|
2021-10-23 17:47:07 +02:00
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
2022-01-29 12:47:46 +01:00
|
|
|
|
.NOTES
|
2022-09-06 21:42:04 +02:00
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
2021-10-23 17:47:07 +02:00
|
|
|
|
#>
|
|
|
|
|
|
|
|
|
|
& "$PSScriptRoot/close-program.ps1" "Spotify" "spotify" ""
|
|
|
|
|
exit 0 # success
|