public/Skip-YmPreviousPlayback.ps1
<#
.Synopsis The function go to previous a track. .DESCRIPTION The function go to previous a track. .EXAMPLE Skip-YmPreviousPlayback -DeviceAddress 10.10.0.30 Default the function doesn't return object, it only previous track. .EXAMPLE previous-ym -DeviceAddress 10.10.0.30 Default the function doesn't return object, it only previous track. .EXAMPLE Skip-YmPreviousPlayback -DeviceAddress 10.10.0.30 -PassThru response_code responde_message ------------- ---------------- 0 Successful request The function with the parameter -PassThru returns information about result. .LINK Author: autor Link: akademiapowershell.pl Date: 26-08-2019 Version: version Keywords: keywords Notes: Changelog: #> function Skip-YmPreviousPlayback { [cmdletbinding()] [Alias('previous-ym')] param ( [Parameter(Mandatory, ValueFromPipeline)] [string[]]$DeviceAddress, [switch]$PassThru ) begin { } process { foreach ($Address in $DeviceAddress) { try { $Response = Invoke-WebRequest -Uri "http://$Address/YamahaExtendedControl/v1/netusb/setPlayback?playback=previous" if ($PassThru) { $Response.Content | ConvertFrom-Json | Add-YmResponseCode } } catch { Write-Warning $PSItem } } } end { } } |