Public/Get-TeamViewer.ps1
Function Get-TeamViewer { <# .SYNOPSIS Get the current version and download URL for TeamViewer. .NOTES Site: https://stealthpuppy.com Author: Aaron Parker Twitter: @stealthpuppy .LINK https://github.com/aaronparker/Evergreen .EXAMPLE Get-TeamViewer Description: Returns the current version and download URI for TeamViewer on Windows (x86, x64) and macOS. #> [OutputType([System.Management.Automation.PSObject])] [CmdletBinding()] Param() # Get application resource strings from its manifest $res = Get-FunctionResource -AppName ("$($MyInvocation.MyCommand)".Split("-"))[1] Write-Verbose -Message $res.Name #region Get current version for Windows $Content = Invoke-WebContent -Uri $res.Get.Uri -Raw If ($Null -ne $Content) { # Match version number from the download URL # Content returned is a string - trim blank lines, split at line ends, sort and select first object to get version number $Sort = $Content.Trim().Split("\n") | Sort-Object | Select-Object -First 1 If ($Sort -match $res.Get.MatchVersion) { $Version = $Matches[0] } Else { $Version = "Unknown" } # Construct the output; Return the custom object to the pipeline $PSObject = [PSCustomObject] @{ Version = $Version URI = $res.Get.DownloadUri } Write-Output -InputObject $PSObject #endregion } } |