Skip to content

genXdev/GenXdev.Console

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation


GenXdev


NAME

GenXdev.Console

SYNOPSIS

A Windows PowerShell module for enhancing the commandline experience

GenXdev.Console License

FEATURES

* âś… Text-to-speech
* âś… Spotify control
* âś… Microsoft Shell helpers
* âś… after installation, use 'cmds' to see full list of installed GenXdev cmdslets

DEPENDENCIES

WinOS - Windows-10 GenXdev.Helpers GenXdev.Webbrowser GenXdev.FileSystem

INSTALLATION

Install-Module "GenXdev.Console"
Import-Module "GenXdev.Console"

UPDATE

Update-Module





Cmdlet Index

GenXdev.Console

Command                  aliases          Description
Stop-TextToSpeech sst Will stop the text-to-speech engine from saying anything else
Start-TextToSpeech say Will use the text-to-speech engine to speak out text
Get-GenXDevCmdlets Retreives a list of all installed GenXdev modules and their Cmdlets and corresponding aliases
Show-GenXDevCmdlets cmds Shows a list of all installed GenXdev modules and their Cmdlets and corresponding aliases
New-MicrosoftShellTab x Opens a new Windows Terminal tab and closes current by default
Invoke-Fasti Fasti Will extract all archive files (zip, 7z, tar, etc) found in current directory and then DELETE them.Each archive file is extracted into their own directory with the same name as the file
Set-LocationParent .. Provides the .. alias to go one directory up
Set-LocationParent2 ... Provides the ... alias to go two directory up
Set-LocationParent3 .... Provides the .... alias to go three directory up
Set-LocationParent4 ..... Provides the ..... alias to go four directory up
Set-LocationParent5 ...... Provides the ...... alias to go five directory up
Enable-Screensaver Starts the configured Windows screensaver
Set-MonitorPowerOff Turns the monitor power off
Set-MonitorPowerOn Turns the monitor power on
Show-Verb Shows a short alphabetical list of all PowerShell verbs
Get-GenXDevModuleInfo
SayTime
SayDate
Now
UtcNow

 

GenXdev.Console.Spotify

Command                  aliases          Description
Search-Spotify fm, sm Performs a Spotify search and returns the search results
Search-SpotifyAndPlay fmp, smp Performs a Spotify search and plays the first found item on the active device
Search-SpotifyAndEnqueue fmq, smq Performs a Spotify search and adds the first item to the queue
Set-SpotifyStart play, Start-Music Starts playback on the device that is active on Spotify
Set-SpotifyPause pausemusic, Resume-Music Pauses playback on the device that is active on Spotify
Set-SpotifyStop stop, Stop-Music Stops playback on the device that is active on Spotify
Set-SpotifyPrevious prev, previous Skips to previous track on the device that is active on Spotify
Set-SpotifyNext next, skip Skips to next track on the device that is active on Spotify
Set-SpotifyRepeatSong repeatsong Enables song-repeat on the device that is active on Spotify
Set-SpotifyRepeatContext repeat Enables playlist-repeat on the device that is active on Spotify
Set-SpotifyRepeatOff norepeat, repeatoff Disables repeat on the device that is active on Spotify
Set-SpotifyShuffleOn shuffle, shuffleon Enables song-shuffle on the device that is active on Spotify
Set-SpotifyShuffleOff noshuffle, shuffleoff Disables song-shuffle on the device that is active on Spotify
Get-SpotifyUserPlaylists gupl Returns a fully populated collection of Spotify playlists owned by current user
Add-SpotifyTracksToPlaylist addtoplaylist Adds tracks to a Spotify playlist
Add-SpotifyNewPlaylist newplaylist Creates a new Spotify playlist
Set-SpotifyPlaylistDetails spld Sets the main properties of a Spotify playlist
Remove-SpotifyTracksFromPlaylist removefromplaylist Removes tracks from a Spotify playlist
Get-SpotifyCurrentlyPlaying gcp Returns the currently on Spotify playing track
Get-SpotifyTrackAudioFeatures audiofeatures Returns Spotify track audio feature information
Get-SpotifyTrackById gettrack Returns full Spotify track information by given TrackId
Set-SpotifyPlaylistOrder Reorders a range of tracks inside a Spotify playlist
Get-SpotifyPlaylistTracks getplaylist Returns all tracks of a Spotify playlist
Get-SpotifyLikedTracks liked Returns all tracks saved in users own Spotify Library
Add-SpotifyTracksToLiked like Adds tracks to the users own Spotify Library
Move-SpotifyLikedTracksToPlaylist moveliked Moves all tracks from the users own Spotify Library to specified playlist
Get-SpotifyPlaylistIdsByName
Remove-SpotifyTracksFromLiked dislike Removes tracks from the users own Spotify Library
Get-SpotifyDevices Returns all currently available Spotify devices for current user
Get-SpotifyActiveDevice Returns all currently active Spotify devices for current user
Set-SpotifyActiveDevice Transfers playback to provided Spotify device
Get-SpotifyLyrics lyrics Searches for lyrics of a track
Get-SpotifyApiToken Returns a ApiToken for Spotify
Set-SpotifyApiToken Caches an Spotify API-token for later use
Connect-SpotifyApiToken Uses Spotify Open-Auth to request an access token





Cmdlets

 


GenXdev.Console

Stop-TextToSpeech

Stop-TextToSpeech                    --> sst

SYNOPSIS

Will stop the text-to-speech engine from saying anything else

SYNTAX

Stop-TextToSpeech [<CommonParameters>]

DESCRIPTION

Will stop the text-to-speech engine from saying anything else

PARAMETERS

<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 

NOTES

    See also: Start-TextToSpeech -> say, and Skip-TextToSpeech -> sstSkip
-------------------------- EXAMPLE 1 --------------------------
PS C:\> say "Good morning"; say "Good evening"; Stop-TextToSpeech; # -> "G.."





Start-TextToSpeech

Start-TextToSpeech                   --> say

SYNOPSIS

Will use the text-to-speech engine to speak out text

SYNTAX

Start-TextToSpeech -lines <String[]> [-wait] [<CommonParameters>]

DESCRIPTION

Will use the text-to-speech engine to speak out text

PARAMETERS

-lines <String[]>
    Required?                    true
    Position?                    named
    Default value                
    Accept pipeline input?       true (ByValue)
    Accept wildcard characters?  false
-wait [<SwitchParameter>]
    Will wait until all text is spoken
    Required?                    false
    Position?                    named
    Default value                False
    Accept pipeline input?       false
    Accept wildcard characters?  false
<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 

NOTES

    See also: Stop-TextToSpeech -> sst, and Skip-TextToSpeech -> sstSkip
-------------------------- EXAMPLE 1 --------------------------
PS C:\> say "Good morning"
PS C:\> "Good morning" | Start-TextToSpeech





Get-GenXDevCmdlets

Get-GenXDevCmdlets

SYNOPSIS

Retreives a list of all installed GenXdev modules and their Cmdlets and corresponding 
aliases

SYNTAX

Get-GenXDevCmdlets [[-Filter] <String>] [-ModuleName <String[]>] [<CommonParameters>]

DESCRIPTION

Retreives a list of all installed GenXdev modules and their Cmdlets and corresponding 
aliases

PARAMETERS

-Filter <String>
    Allows you to search for Cmdlets by providing searchstrings, with or without wildcards
    Required?                    false
    Position?                    1
    Default value                *
    Accept pipeline input?       false
    Accept wildcard characters?  false
-ModuleName <String[]>
    Required?                    false
    Position?                    named
    Default value                @("*")
    Accept pipeline input?       false
    Accept wildcard characters?  false
<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





Show-GenXDevCmdlets

Show-GenXDevCmdlets                  --> cmds

SYNOPSIS

Shows a list of all installed GenXdev modules and their Cmdlets and corresponding aliases

SYNTAX

Show-GenXDevCmdlets [[-Filter] <String>] [-ModuleName <String[]>] [-Online] 
[<CommonParameters>]

DESCRIPTION

Shows a list of all installed GenXdev modules and their Cmdlets and corresponding aliases

PARAMETERS

-Filter <String>
    Allows you to search for Cmdlets by providing searchstrings, with or without wildcards
    Required?                    false
    Position?                    1
    Default value                *
    Accept pipeline input?       false
    Accept wildcard characters?  false
-ModuleName <String[]>
    Required?                    false
    Position?                    named
    Default value                @("*")
    Accept pipeline input?       false
    Accept wildcard characters?  false
-Online [<SwitchParameter>]
    Required?                    false
    Position?                    named
    Default value                False
    Accept pipeline input?       false
    Accept wildcard characters?  false
<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





New-MicrosoftShellTab

New-MicrosoftShellTab                --> x

SYNOPSIS

Opens a new Windows Terminal tab

SYNTAX

New-MicrosoftShellTab [-DontCloseThisTab] [<CommonParameters>]

DESCRIPTION

Opens a new Windows Terminal tab and closes current by default

PARAMETERS

-DontCloseThisTab [<SwitchParameter>]
    Keeps current tab open
    Required?                    false
    Position?                    named
    Default value                False
    Accept pipeline input?       false
    Accept wildcard characters?  false
<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





Invoke-Fasti

Invoke-Fasti                         --> Fasti

SYNOPSIS

Will extract all archive files (zip, 7z, tar, etc) found in current directory and then 
DELETE them

SYNTAX

Invoke-Fasti [<CommonParameters>]

DESCRIPTION

Will extract all archive files (zip, 7z, tar, etc) found in current directory and then 
DELETE them.
Each archive file is extracted into their own directory with the same name as the file

PARAMETERS

<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 

NOTES

    You need 7z installed
-------------------------- EXAMPLE 1 --------------------------
PS D:\downloads>Invoke-Fasti





Set-LocationParent

Set-LocationParent                   --> ..

SYNOPSIS

Provides the .. alias to go one directory up

SYNTAX

Set-LocationParent [<CommonParameters>]

DESCRIPTION

Provides the .. alias to go one directory up

PARAMETERS

<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





Set-LocationParent2

Set-LocationParent2                  --> ...

SYNOPSIS

Provides the ... alias to go two directory up

SYNTAX

Set-LocationParent2 [<CommonParameters>]

DESCRIPTION

Provides the ... alias to go two directory up

PARAMETERS

<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





Set-LocationParent3

Set-LocationParent3                  --> ....

SYNOPSIS

Provides the .... alias to go three directory up

SYNTAX

Set-LocationParent3 [<CommonParameters>]

DESCRIPTION

Provides the .... alias to go three directory up

PARAMETERS

<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





Set-LocationParent4

Set-LocationParent4                  --> .....

SYNOPSIS

Provides the ..... alias to go four directory up

SYNTAX

Set-LocationParent4 [<CommonParameters>]

DESCRIPTION

Provides the ..... alias to go four directory up

PARAMETERS

<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





Set-LocationParent5

Set-LocationParent5                  --> ......

SYNOPSIS

Provides the ...... alias to go five directory up

SYNTAX

Set-LocationParent5 [<CommonParameters>]

DESCRIPTION

Provides the ...... alias to go five directory up

PARAMETERS

<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





Enable-Screensaver

Enable-Screensaver

SYNOPSIS

Starts the configured Windows screensaver

SYNTAX

Enable-Screensaver [<CommonParameters>]

DESCRIPTION

Starts the configured Windows screensaver

PARAMETERS

<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





Set-MonitorPowerOff

Set-MonitorPowerOff

SYNOPSIS

Turns the monitor power off

SYNTAX

Set-MonitorPowerOff [<CommonParameters>]

DESCRIPTION

Turns the monitor power off

PARAMETERS

<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





Set-MonitorPowerOn

Set-MonitorPowerOn

SYNOPSIS

Turns the monitor power on

SYNTAX

Set-MonitorPowerOn [<CommonParameters>]

DESCRIPTION

Turns the monitor power on

PARAMETERS

<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





Show-Verb

Show-Verb

SYNOPSIS

Shows a short alphabetical list of all PowerShell verbs

SYNTAX

Show-Verb [[-Verb] <String[]>] [<CommonParameters>]

DESCRIPTION

Shows a short alphabetical list of all PowerShell verbs

PARAMETERS

-Verb <String[]>
    Required?                    false
    Position?                    1
    Default value                @()
    Accept pipeline input?       true (ByValue, ByPropertyName)
    Accept wildcard characters?  false
<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





Get-GenXDevModuleInfo

Get-GenXDevModuleInfo

SYNTAX

Get-GenXDevModuleInfo [[-ModuleName] <string[]>] [<CommonParameters>]

PARAMETERS

-ModuleName <string[]>
    Required?                    false
    Position?                    0
    Accept pipeline input?       true (ByValue, ByPropertyName)
    Parameter set name           (All)
    Aliases                      Name, Module
    Dynamic?                     false
    Accept wildcard characters?  false
<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





SayTime

SayTime

SYNTAX

SayTime 

PARAMETERS

None





SayDate

SayDate

SYNTAX

SayDate 

PARAMETERS

None





Now

Now

SYNTAX

Now [<CommonParameters>]

PARAMETERS

<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





UtcNow

UtcNow

SYNTAX

UtcNow [<CommonParameters>]

PARAMETERS

<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





 


GenXdev.Console.Spotify

Search-Spotify

Search-Spotify                       --> fm, sm

SYNOPSIS

Performs a Spotify search and returns the search results

SYNTAX

Search-Spotify [-Queries] <String[]> [-SearchType <String[]>] [<CommonParameters>]

DESCRIPTION

Performs a Spotify search and returns the search results

PARAMETERS

-Queries <String[]>
    The search phrase
    Required?                    true
    Position?                    1
    Default value                
    Accept pipeline input?       true (ByValue, ByPropertyName)
    Accept wildcard characters?  false
-SearchType <String[]>
    Optionally, the type of item to search for
    Required?                    false
    Position?                    named
    Default value                @("Track")
    Accept pipeline input?       false
    Accept wildcard characters?  false
<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





Search-SpotifyAndPlay

Search-SpotifyAndPlay                --> fmp, smp

SYNOPSIS

Performs a Spotify search and plays the first found item

SYNTAX

Search-SpotifyAndPlay [-Queries] <String[]> [-SearchType <String[]>] [<CommonParameters>]

DESCRIPTION

Performs a Spotify search and plays the first found item on the active device

PARAMETERS

-Queries <String[]>
    The search phrase
    Required?                    true
    Position?                    1
    Default value                
    Accept pipeline input?       true (ByValue, ByPropertyName)
    Accept wildcard characters?  false
-SearchType <String[]>
    Optionally, the type of item to search for
    Required?                    false
    Position?                    named
    Default value                @("Track")
    Accept pipeline input?       false
    Accept wildcard characters?  false
<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





Search-SpotifyAndEnqueue

Search-SpotifyAndEnqueue             --> fmq, smq

SYNOPSIS

Performs a Spotify search and adds the first item to the queue

SYNTAX

Search-SpotifyAndEnqueue [-Queries] <String[]> [-SearchType <String[]>] [<CommonParameters>]

DESCRIPTION

Performs a Spotify search and adds the first item to the queue

PARAMETERS

-Queries <String[]>
    The search phrase
    Required?                    true
    Position?                    1
    Default value                
    Accept pipeline input?       true (ByValue, ByPropertyName)
    Accept wildcard characters?  false
-SearchType <String[]>
    Optionally, the type of item to search for
    Required?                    false
    Position?                    named
    Default value                @("Track")
    Accept pipeline input?       false
    Accept wildcard characters?  false
<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





Set-SpotifyStart

Set-SpotifyStart                     --> play, Start-Music

SYNOPSIS

Starts Spotify playback

SYNTAX

Set-SpotifyStart [<CommonParameters>]

DESCRIPTION

Starts playback on the device that is active on Spotify

PARAMETERS

<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





Set-SpotifyPause

Set-SpotifyPause                     --> pausemusic, Resume-Music

SYNOPSIS

Pauses Spotify playback

SYNTAX

Set-SpotifyPause [<CommonParameters>]

DESCRIPTION

Pauses playback on the device that is active on Spotify

PARAMETERS

<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





Set-SpotifyStop

Set-SpotifyStop                      --> stop, Stop-Music

SYNOPSIS

Stops Spotify playback

SYNTAX

Set-SpotifyStop [<CommonParameters>]

DESCRIPTION

Stops playback on the device that is active on Spotify

PARAMETERS

<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





Set-SpotifyPrevious

Set-SpotifyPrevious                  --> prev, previous

SYNOPSIS

Skips to previous track on Spotify

SYNTAX

Set-SpotifyPrevious [<CommonParameters>]

DESCRIPTION

Skips to previous track on the device that is active on Spotify

PARAMETERS

<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





Set-SpotifyNext

Set-SpotifyNext                      --> next, skip

SYNOPSIS

Skips to next track on Spotify

SYNTAX

Set-SpotifyNext [<CommonParameters>]

DESCRIPTION

Skips to next track on the device that is active on Spotify

PARAMETERS

<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





Set-SpotifyRepeatSong

Set-SpotifyRepeatSong                --> repeatsong

SYNOPSIS

Enables Spotify song-repeat

SYNTAX

Set-SpotifyRepeatSong [<CommonParameters>]

DESCRIPTION

Enables song-repeat on the device that is active on Spotify

PARAMETERS

<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





Set-SpotifyRepeatContext

Set-SpotifyRepeatContext             --> repeat

SYNOPSIS

Enables Spotify playlist-repeat

SYNTAX

Set-SpotifyRepeatContext [<CommonParameters>]

DESCRIPTION

Enables playlist-repeat on the device that is active on Spotify

PARAMETERS

<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





Set-SpotifyRepeatOff

Set-SpotifyRepeatOff                 --> norepeat, repeatoff

SYNOPSIS

Disables Spotify repeat

SYNTAX

Set-SpotifyRepeatOff [<CommonParameters>]

DESCRIPTION

Disables repeat on the device that is active on Spotify

PARAMETERS

<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





Set-SpotifyShuffleOn

Set-SpotifyShuffleOn                 --> shuffle, shuffleon

SYNOPSIS

Enables Spotify song-shuffle

SYNTAX

Set-SpotifyShuffleOn [<CommonParameters>]

DESCRIPTION

Enables song-shuffle on the device that is active on Spotify

PARAMETERS

<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





Set-SpotifyShuffleOff

Set-SpotifyShuffleOff                --> noshuffle, shuffleoff

SYNOPSIS

Disables Spotify song-shuffle

SYNTAX

Set-SpotifyShuffleOff [<CommonParameters>]

DESCRIPTION

Disables song-shuffle on the device that is active on Spotify

PARAMETERS

<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





Get-SpotifyUserPlaylists

Get-SpotifyUserPlaylists             --> gupl

SYNOPSIS

Returns a fully populated collection of Spotify playlists owned by current user

SYNTAX

Get-SpotifyUserPlaylists [[-Filter] <String[]>] [-Force] [<CommonParameters>]

DESCRIPTION

Returns a fully populated collection of Spotify playlists owned by current user

PARAMETERS

-Filter <String[]>
    Required?                    false
    Position?                    1
    Default value                @("*")
    Accept pipeline input?       true (ByValue, ByPropertyName)
    Accept wildcard characters?  false
-Force [<SwitchParameter>]
    Required?                    false
    Position?                    named
    Default value                False
    Accept pipeline input?       false
    Accept wildcard characters?  false
<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





Add-SpotifyTracksToPlaylist

Add-SpotifyTracksToPlaylist          --> addtoplaylist

SYNOPSIS

Adds tracks to a Spotify playlist

SYNTAX

Add-SpotifyTracksToPlaylist [-PlaylistName] <String[]> [[-Uri] <String[]>] 
[<CommonParameters>]
Add-SpotifyTracksToPlaylist [-PlaylistId] <String[]> [[-Uri] <String[]>] 
[<CommonParameters>]

DESCRIPTION

Adds tracks to a Spotify playlist

PARAMETERS

-PlaylistName <String[]>
    Required?                    true
    Position?                    1
    Default value                
    Accept pipeline input?       false
    Accept wildcard characters?  false
-PlaylistId <String[]>
    The Spotify playlist to add tracks to
    Required?                    true
    Position?                    1
    Default value                
    Accept pipeline input?       false
    Accept wildcard characters?  false
-Uri <String[]>
    The Spotify tracks that should be added to the playlist
    Required?                    false
    Position?                    2
    Default value                @()
    Accept pipeline input?       true (ByValue, ByPropertyName)
    Accept wildcard characters?  false
<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





Add-SpotifyNewPlaylist

Add-SpotifyNewPlaylist               --> newplaylist

SYNOPSIS

Creates a new Spotify playlist

SYNTAX

Add-SpotifyNewPlaylist [-Name] <String> [[-Description] <String>] [-Public] [-Collabrative] 
[<CommonParameters>]

DESCRIPTION

Creates a new Spotify playlist

PARAMETERS

-Name <String>
    The name for the new playlist
    Required?                    true
    Position?                    1
    Default value                
    Accept pipeline input?       false
    Accept wildcard characters?  false
-Description <String>
    The description for the new playlist
    Required?                    false
    Position?                    2
    Default value                
    Accept pipeline input?       false
    Accept wildcard characters?  false
-Public [<SwitchParameter>]
    Make this a public playlist
    Required?                    false
    Position?                    named
    Default value                False
    Accept pipeline input?       false
    Accept wildcard characters?  false
-Collabrative [<SwitchParameter>]
    Allow others to make changes
    Required?                    false
    Position?                    named
    Default value                False
    Accept pipeline input?       false
    Accept wildcard characters?  false
<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





Set-SpotifyPlaylistDetails

Set-SpotifyPlaylistDetails           --> spld

SYNOPSIS

Sets the main properties of a Spotify playlist

SYNTAX

Set-SpotifyPlaylistDetails [-PlaylistId] <String> [-Name] <String> [[-Description] 
<String>] [-Public] [-Collabrative] [-Private] [-NoCollabrations] [<CommonParameters>]

DESCRIPTION

Sets the main properties of a Spotify playlist

PARAMETERS

-PlaylistId <String>
    The Spotify playlist to set properties for
    Required?                    true
    Position?                    1
    Default value                
    Accept pipeline input?       false
    Accept wildcard characters?  false
-Name <String>
    The new name for the playlist
    Required?                    true
    Position?                    2
    Default value                
    Accept pipeline input?       false
    Accept wildcard characters?  false
-Description <String>
    The new description for the playlist
    Required?                    false
    Position?                    3
    Default value                
    Accept pipeline input?       false
    Accept wildcard characters?  false
-Public [<SwitchParameter>]
    Make the playlist public
    Required?                    false
    Position?                    named
    Default value                False
    Accept pipeline input?       false
    Accept wildcard characters?  false
-Collabrative [<SwitchParameter>]
    Allow others to make changes
    Required?                    false
    Position?                    named
    Default value                False
    Accept pipeline input?       false
    Accept wildcard characters?  false
-Private [<SwitchParameter>]
    Make the playlist private
    Required?                    false
    Position?                    named
    Default value                False
    Accept pipeline input?       false
    Accept wildcard characters?  false
-NoCollabrations [<SwitchParameter>]
    Disallow others to make changes
    Required?                    false
    Position?                    named
    Default value                False
    Accept pipeline input?       false
    Accept wildcard characters?  false
<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





Remove-SpotifyTracksFromPlaylist

Remove-SpotifyTracksFromPlaylist     --> removefromplaylist

SYNOPSIS

Removes tracks from a Spotify playlist

SYNTAX

Remove-SpotifyTracksFromPlaylist [-PlaylistName] <String[]> [[-Uri] <String[]>] 
[<CommonParameters>]
Remove-SpotifyTracksFromPlaylist [-PlaylistId] <String[]> [[-Uri] <String[]>] 
[<CommonParameters>]

DESCRIPTION

Removes tracks from a Spotify playlist

PARAMETERS

-PlaylistName <String[]>
    Required?                    true
    Position?                    1
    Default value                
    Accept pipeline input?       false
    Accept wildcard characters?  false
-PlaylistId <String[]>
    The Spotify playlist to delete tracks from
    Required?                    true
    Position?                    1
    Default value                
    Accept pipeline input?       false
    Accept wildcard characters?  false
-Uri <String[]>
    The Spotify tracks that should be removed from the playlist
    Required?                    false
    Position?                    2
    Default value                @()
    Accept pipeline input?       true (ByValue, ByPropertyName)
    Accept wildcard characters?  false
<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





Get-SpotifyCurrentlyPlaying

Get-SpotifyCurrentlyPlaying          --> gcp

SYNOPSIS

Returns the currently on Spotify playing track

SYNTAX

Get-SpotifyCurrentlyPlaying [<CommonParameters>]

DESCRIPTION

Returns the currently on Spotify playing track

PARAMETERS

<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





Get-SpotifyTrackAudioFeatures

Get-SpotifyTrackAudioFeatures        --> audiofeatures

SYNOPSIS

Returns Spotify track audio feature information

SYNTAX

Get-SpotifyTrackAudioFeatures [-TrackId] <String[]> [<CommonParameters>]

DESCRIPTION

Returns Spotify track audio feature information

PARAMETERS

-TrackId <String[]>
    Required?                    true
    Position?                    1
    Default value                
    Accept pipeline input?       true (ByValue, ByPropertyName)
    Accept wildcard characters?  false
<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





Get-SpotifyTrackById

Get-SpotifyTrackById                 --> gettrack

SYNOPSIS

Returns full Spotify track information by given TrackId

SYNTAX

Get-SpotifyTrackById [-TrackId] <String> [<CommonParameters>]

DESCRIPTION

Returns full Spotify track information by given TrackId

PARAMETERS

-TrackId <String>
    The Spotify track id of the track to lookup
    Required?                    true
    Position?                    1
    Default value                
    Accept pipeline input?       true (ByValue, ByPropertyName)
    Accept wildcard characters?  false
<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





Set-SpotifyPlaylistOrder

Set-SpotifyPlaylistOrder

SYNOPSIS

Reorders a range of tracks inside a Spotify playlist

SYNTAX

Set-SpotifyPlaylistOrder [-PlaylistId] <String> [-RangeStart] <Int32> [-InsertBefore] 
<Int32> [[-RangeLength] <Nullable`1>] [<CommonParameters>]

DESCRIPTION

Reorders a range of tracks inside a Spotify playlist

PARAMETERS

-PlaylistId <String>
    The Spotify playlist to perform the re-ordering on
    Required?                    true
    Position?                    1
    Default value                
    Accept pipeline input?       false
    Accept wildcard characters?  false
-RangeStart <Int32>
    The position of the first item to be reordered
    Required?                    true
    Position?                    1
    Default value                0
    Accept pipeline input?       false
    Accept wildcard characters?  false
-InsertBefore <Int32>
    The position where the items should be inserted. To reorder the items to the
    end of the playlist, simply set insert_before to the position after the last
    item. Examples: To reorder the first item to the last position in a playlist
    with 10 items, set range_start to 0, and insert_before to 10. To reorder the
    last item in a playlist with 10 items to the start of the playlist, set range_start
    to 9, and insert_before to 0.
    Required?                    true
    Position?                    2
    Default value                0
    Accept pipeline input?       false
    Accept wildcard characters?  false
-RangeLength <Nullable`1>
    The amount of items to be reordered. Defaults to 1 if not set. The range of items
    to be reordered begins from the range_start position, and includes the range_length
    subsequent items. Example: To move the items at index 9-10 to the start of the
    playlist, range_start is set to 9, and range_length is set to 2.
    Required?                    false
    Position?                    3
    Default value                
    Accept pipeline input?       false
    Accept wildcard characters?  false
<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





Get-SpotifyPlaylistTracks

Get-SpotifyPlaylistTracks            --> getplaylist

SYNOPSIS

Returns all tracks of a Spotify playlist

SYNTAX

Get-SpotifyPlaylistTracks [-PlaylistName] <String> [<CommonParameters>]
Get-SpotifyPlaylistTracks [-PlaylistId] <String> [<CommonParameters>]

DESCRIPTION

Returns all tracks of a Spotify playlist

PARAMETERS

-PlaylistName <String>
    Required?                    true
    Position?                    1
    Default value                
    Accept pipeline input?       true (ByValue, ByPropertyName)
    Accept wildcard characters?  false
-PlaylistId <String>
    The Spotify playlist to return tracks for
    Required?                    true
    Position?                    1
    Default value                
    Accept pipeline input?       true (ByValue, ByPropertyName)
    Accept wildcard characters?  false
<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





Get-SpotifyLikedTracks

Get-SpotifyLikedTracks               --> liked

SYNOPSIS

Returns all tracks saved in users own Spotify Library

SYNTAX

Get-SpotifyLikedTracks [<CommonParameters>]

DESCRIPTION

Returns all tracks saved in users own Spotify Library

PARAMETERS

<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





Add-SpotifyTracksToLiked

Add-SpotifyTracksToLiked             --> like

SYNOPSIS

Adds tracks to the users own Spotify Library

SYNTAX

Add-SpotifyTracksToLiked [[-TrackId] <String[]>] [<CommonParameters>]

DESCRIPTION

Adds tracks to the users own Spotify Library

PARAMETERS

-TrackId <String[]>
    The Spotify track Ids of the songs that should be added to liked"
    Required?                    false
    Position?                    1
    Default value                @()
    Accept pipeline input?       true (ByValue, ByPropertyName)
    Accept wildcard characters?  false
<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





Move-SpotifyLikedTracksToPlaylist

Move-SpotifyLikedTracksToPlaylist    --> moveliked

SYNOPSIS

Moves all tracks from the users own Spotify Library to specified playlist

SYNTAX

Move-SpotifyLikedTracksToPlaylist [-PlaylistName] <String[]> [<CommonParameters>]
Move-SpotifyLikedTracksToPlaylist [-PlaylistId] <String[]> [<CommonParameters>]

DESCRIPTION

Moves all tracks from the users own Spotify Library to specified playlist

PARAMETERS

-PlaylistName <String[]>
    Required?                    true
    Position?                    1
    Default value                
    Accept pipeline input?       true (ByValue, ByPropertyName)
    Accept wildcard characters?  false
-PlaylistId <String[]>
    The Spotify playlist where all liked tracks should move to"
    Required?                    true
    Position?                    1
    Default value                
    Accept pipeline input?       true (ByValue, ByPropertyName)
    Accept wildcard characters?  false
<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





Get-SpotifyPlaylistIdsByName

Get-SpotifyPlaylistIdsByName

SYNTAX

Get-SpotifyPlaylistIdsByName [-PlaylistName] <string[]> [<CommonParameters>]

PARAMETERS

-PlaylistName <string[]>
    The Spotify playlist where all liked tracks should move to
    Required?                    true
    Position?                    0
    Accept pipeline input?       true (ByValue, ByPropertyName)
    Parameter set name           ByName
    Aliases                      Name
    Dynamic?                     false
    Accept wildcard characters?  false
<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





Remove-SpotifyTracksFromLiked

Remove-SpotifyTracksFromLiked        --> dislike

SYNOPSIS

Removes tracks from the users own Spotify Library

SYNTAX

Remove-SpotifyTracksFromLiked [[-TrackId] <String[]>] [<CommonParameters>]

DESCRIPTION

Removes tracks from the users own Spotify Library

PARAMETERS

-TrackId <String[]>
    The Spotify track Ids of the songs that should be removed from liked"
    Required?                    false
    Position?                    1
    Default value                @()
    Accept pipeline input?       true (ByValue, ByPropertyName)
    Accept wildcard characters?  false
<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





Get-SpotifyDevices

Get-SpotifyDevices

SYNOPSIS

Returns all currently available Spotify devices for current user

SYNTAX

Get-SpotifyDevices [<CommonParameters>]

DESCRIPTION

Returns all currently available Spotify devices for current user

PARAMETERS

<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





Get-SpotifyActiveDevice

Get-SpotifyActiveDevice

SYNOPSIS

Returns all currently active Spotify devices for current user

SYNTAX

Get-SpotifyActiveDevice [<CommonParameters>]

DESCRIPTION

Returns all currently active Spotify devices for current user

PARAMETERS

<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





Set-SpotifyActiveDevice

Set-SpotifyActiveDevice

SYNOPSIS

Transfers playback to provided Spotify device

SYNTAX

Set-SpotifyActiveDevice [-DeviceId] <String> [<CommonParameters>]

DESCRIPTION

Transfers playback to provided Spotify device

PARAMETERS

-DeviceId <String>
    The Spotify deviceId to transfer playback to
    Required?                    true
    Position?                    1
    Default value                
    Accept pipeline input?       true (ByPropertyName)
    Accept wildcard characters?  false
<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





Get-SpotifyLyrics

Get-SpotifyLyrics                    --> lyrics

SYNOPSIS

Searches for lyrics of a track

SYNTAX

Get-SpotifyLyrics [-TrackId <String>] [[-Queries] <String[]>] [<CommonParameters>]

DESCRIPTION

Searches for lyrics of a track

PARAMETERS

-TrackId <String>
    Optional: Spotify id of track to lookup lyrics for
    Required?                    false
    Position?                    named
    Default value                
    Accept pipeline input?       true (ByPropertyName)
    Accept wildcard characters?  false
-Queries <String[]>
    Optional: A query to find a track to lookup lyrics for
    Required?                    false
    Position?                    1
    Default value                
    Accept pipeline input?       true (ByValue, ByPropertyName)
    Accept wildcard characters?  false
<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





Get-SpotifyApiToken

Get-SpotifyApiToken

SYNOPSIS

Returns a ApiToken for Spotify

SYNTAX

Get-SpotifyApiToken [<CommonParameters>]

DESCRIPTION

Returns a ApiToken for Spotify

PARAMETERS

<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





Set-SpotifyApiToken

Set-SpotifyApiToken

SYNOPSIS

Caches an Spotify API-token for later use

SYNTAX

Set-SpotifyApiToken [-ApiToken] <String> [<CommonParameters>]

DESCRIPTION

Caches an Spotify API-token for later use

PARAMETERS

-ApiToken <String>
    The API-token to cache
    Required?                    true
    Position?                    1
    Default value                
    Accept pipeline input?       false
    Accept wildcard characters?  false
<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





Connect-SpotifyApiToken

Connect-SpotifyApiToken

SYNOPSIS

Uses Spotify Open-Auth to request an access token

SYNTAX

Connect-SpotifyApiToken [<CommonParameters>]

DESCRIPTION

Uses Spotify Open-Auth to request an access token

PARAMETERS

<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters     (https://go.microsoft.com/fwlink/?LinkID=113216). 





About

A Windows Powershell module for enhancing the commandline experience

Resources

License

MIT, MIT licenses found

Licenses found

MIT
LICENSE
MIT
license.txt

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published