mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 00:54:04 +01:00
16 lines
263 B
PowerShell
16 lines
263 B
PowerShell
|
<#
|
|||
|
.SYNOPSIS
|
|||
|
Starts Spotify
|
|||
|
.DESCRIPTION
|
|||
|
This script starts the Spotify application.
|
|||
|
.EXAMPLE
|
|||
|
PS> ./open-spotify
|
|||
|
.NOTES
|
|||
|
Author: Markus Fleschutz · License: CC0
|
|||
|
.LINK
|
|||
|
https://github.com/fleschutz/PowerShell
|
|||
|
#>
|
|||
|
|
|||
|
Start-Process spotify.exe
|
|||
|
exit 0 # success
|