Apps/Get-CitrixHypervisorFeed.ps1
Function Get-CitrixHypervisorFeed { <# .SYNOPSIS Reads the public Citrix Hypervisor 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 () # Get application resource strings from its manifest $res = Get-FunctionResource -AppName ("$($MyInvocation.MyCommand)".Split("-"))[1] Write-Verbose -Message $res.Name # Read the feed and filter for include and exclude strings and return output to the pipeline $gcfParams = @{ Uri = $res.Get.Hypervisor.Uri Include = $res.Get.Hypervisor.Include Exclude = $res.Get.Hypervisor.Exclude } $Content = Get-CitrixRssFeed @gcfParams If ($Null -ne $Content) { Write-Output -InputObject $Content } } |