Apps/Get-LogMeInGoToOpener.ps1
Function Get-LogMeInGoToOpener { <# .SYNOPSIS Returns the available LogMeIn GoToOpener versions and download URIs. .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]) ) # Resolve the URL to the target location $Response = Resolve-SystemNetWebRequest -Uri $res.Get.Download.Uri # Match version number try { $Version = [RegEx]::Match($Response.ResponseUri, $res.Get.Download.MatchVersion).Captures.Groups[1].Value } catch { $Version = "Unknown" } # Build the output object; Output object to the pipeline $PSObject = [PSCustomObject] @{ Version = $Version Date = $Response.LastModified URI = $Response.ResponseUri.AbsoluteUri } Write-Output -InputObject $PSObject } |