Apps/Get-CitrixGatewayFeed.ps1
Function Get-CitrixGatewayFeed { <# .SYNOPSIS Reads the public Citrix Gateway feed to return an array of versions and links to download pages. .NOTES Author: Aaron Parker Twitter: @stealthpuppy #> [OutputType([System.Management.Automation.PSObject])] [CmdletBinding(SupportsShouldProcess = $False)] param ( [Parameter(Mandatory = $False, Position = 0)] [ValidateNotNull()] [System.Management.Automation.PSObject] $res = (Get-FunctionResource -AppName ("$($MyInvocation.MyCommand)".Split("-"))[1]), [Parameter(Mandatory = $False, Position = 1)] [ValidateNotNull()] [System.String] $Filter ) # Read the feed and filter for include and exclude strings and return output to the pipeline $gcfParams = @{ Uri = $res.Get.Gateway.Uri Include = $res.Get.Gateway.Include Exclude = $res.Get.Gateway.Exclude } $Content = Get-CitrixRssFeed @gcfParams Write-Output -InputObject $Content } |