Skip to content

Latest commit

 

History

History
53 lines (42 loc) · 976 Bytes

File metadata and controls

53 lines (42 loc) · 976 Bytes

The 'open-spotify.ps1' Script

This script launches the Spotify application.

Parameters

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

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

Example

PS> ./open-spotify.ps1

Notes

Author: Markus Fleschutz | License: CC0

Related Links

https://github.com/fleschutz/PowerShell

Script Content

<#
.SYNOPSIS
	Launches the Spotify app
.DESCRIPTION
	This script launches the Spotify application.
.EXAMPLE
	PS> ./open-spotify.ps1
.LINK
	https://github.com/fleschutz/PowerShell
.NOTES
	Author: Markus Fleschutz | License: CC0
#>

#requires -version 5.1

Start-Process spotify:
exit 0 # success

(page generated by convert-ps2md.ps1 as of 04/19/2026 17:57:03)