Public/Get-CitrixWorkspaceAppFeed.ps1
Function Get-CitrixWorkspaceAppFeed { <# .SYNOPSIS Gets the current available Citrix Receiver release versions. .DESCRIPTION Reads the public Citrix Receiver web page to return an array of Receiver platforms and the available versions. Does not provide the version number for Receiver where a login is required (e.g. HTML5, Chrome) .NOTES Author: Aaron Parker Twitter: @stealthpuppy .EXAMPLE Get-CitrixWorkspaceAppFeed Description: Returns the available Citrix Workspace app versions for all platforms. #> [OutputType([System.Management.Automation.PSObject])] [CmdletBinding()] Param() # Read the feed and filter for include and exclude strings and return output to the pipeline $gcfParams = @{ Uri = $script:resourceStrings.Applications.CitrixFeeds.WorkspaceApp.Uri Include = $script:resourceStrings.Applications.CitrixFeeds.WorkspaceApp.Include Exclude = $script:resourceStrings.Applications.CitrixFeeds.WorkspaceApp.Exclude } $Content = Get-CitrixRssFeed @gcfParams If ($Null -ne $Content) { Write-Output -InputObject $Content } } |