Skip to content

Latest commit

 

History

History
51 lines (41 loc) · 1.04 KB

close-spotify.md

File metadata and controls

51 lines (41 loc) · 1.04 KB

Script: close-spotify.ps1

This PowerShell script closes the Spotify application gracefully.

Parameters

PS> ./close-spotify.ps1 [<CommonParameters>]

[<CommonParameters>]
    This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, 
    WarningVariable, OutBuffer, PipelineVariable, and OutVariable.

Example

PS> ./close-spotify.ps1

Notes

Author: Markus Fleschutz | License: CC0

Related Links

https://github.com/fleschutz/PowerShell

Script Content

<#
.SYNOPSIS
	Closes Spotify
.DESCRIPTION
	This PowerShell script closes the Spotify application gracefully.
.EXAMPLE
	PS> ./close-spotify.ps1
.LINK
	https://github.com/fleschutz/PowerShell
.NOTES
	Author: Markus Fleschutz | License: CC0
#>

& "$PSScriptRoot/close-program.ps1" "Spotify" "spotify" ""
exit 0 # success

(generated by convert-ps2md.ps1 using the comment-based help of close-spotify.ps1 as of 05/19/2024 10:25:19)