Public/Get-AvdImageVersionStatus.ps1
Function Get-AvdImageVersionStatus { <# .SYNOPSIS Gets the image version from where the session host is started from. .DESCRIPTION The function will help you getting insights if there are session hosts started from an old version in relation to the Shared Image Gallery .PARAMETER HostpoolName Enter the AVD Hostpool name .PARAMETER ResourceGroupName Enter the AVD Hostpool resourcegroup name .PARAMETER SessionHostName Enter the session host name. .PARAMETER NotLatest This is a switch parameter which let you control the output to show only the sessionhosts which are not started from the latest version. .EXAMPLE Get-AvdImageVersionStatus -HostpoolName avd-hostpool-001 -ResourceGroupName rg-avd-001 .EXAMPLE Get-AvdImageVersionStatus -HostpoolName avd-hostpool-001 -ResourceGroupName rg-avd-001 -NotLatest .EXAMPLE Get-AvdImageVersionStatus -HostpoolName avd-hostpool-001 -ResourceGroupName rg-avd-001 -SessionHostName avd.host -NotLatest #> [CmdletBinding(DefaultParameterSetName = 'Hostpool')] param ( [parameter(Mandatory, ParameterSetName = 'Hostpool')] [parameter(Mandatory, ParameterSetName = 'Sessionhost')] [ValidateNotNullOrEmpty()] [string]$HostpoolName, [parameter(Mandatory, ParameterSetName = 'Hostpool')] [parameter(Mandatory, ParameterSetName = 'Sessionhost')] [ValidateNotNullOrEmpty()] [string]$ResourceGroupName, [parameter(ParameterSetName = 'Sessionhost')] [ValidateNotNullOrEmpty()] [string]$SessionHostName, [parameter()] [switch]$NotLatest ) Begin { Write-Verbose "Start searching" AuthenticationCheck $token = GetAuthToken -resource $Script:AzureApiUrl $apiVersion = "?api-version=2022-01-03" } Process { switch ($PsCmdlet.ParameterSetName) { Sessionhost { $Parameters = @{ HostPoolName = $HostpoolName ResourceGroupName = $ResourceGroupName Name = $SessionHostName } } Default { $Parameters = @{ HostPoolName = $HostpoolName ResourceGroupName = $ResourceGroupName } } } try { $sessionHosts = Get-AvdSessionHostResources @Parameters } catch { Throw "No sessionhosts found, $_" } if ($sessionHosts) { $sessionHosts | Foreach-Object { Write-Verbose "Searching for $($_.Name)" $isLatestVersion = $false $imageVersionId = $_.vmResources.properties.storageprofile.imagereference.id if ($imageVersionId) { Write-Verbose "Image id found!, $imageVersionId" # Stripping last part from whole image version id. try { $requestParameters = @{ uri = "{0}{1}/versions{2}" -f $Script:AzureApiUrl, $imageId, $apiVersion header = $token method = "GET" } $allVersionsRequest = (Invoke-RestMethod @requestParameters).value | Select-Object Name -Last 1 if ($_.vmResources.properties.storageprofile.imagereference.exactVersion -eq $($allVersionsRequest.name)) { $isLatestVersion = $true } else { $isLatestVersion = $false } $imageInfo = @{ currentImageVersion = $_.vmResources.properties.storageprofile.imagereference.exactVersion latestVersion = $allVersionsRequest.name isLatestVersion = $isLatestVersion imageId = $imageId imageName = $imageName imageVersionId = $imageVersionId galleryName = $galleryName hostpoolName = $HostpoolName sessionHostName = $_.Name } } catch { Write-Warning "Someting went wrong when crawling for info at url $($requestParameters.uri), $_" } } else { $imageInfo = $false Write-Warning "Sessionhost $($_.name) has no image version" } $_ | Add-Member -NotePropertyName imageInfo -NotePropertyValue $imageInfo -Force } } else { Write-Error "No Sessionhosts with resources found in hostpool $HostpoolName" } } End { if ($NotLatest){ $sessionHosts | Where-Object {$_.imageInfo.isLatestVersion -eq $false} } else { $sessionHosts } } } |