For the most up-to-date instructions for applying Azure Stack Hub software updates, see Install Azure Stack Hub Updates.
Note: For the duration of the update process, alerts can appear in the Administration Portal. Normally, these can be ignored and they close automatically after the update installation finishes. As a best practice, we recommend that you log out of the Administration Portal after the job starts, and then monitor the progress through PowerShell. Leaving the Administration Portal open can delay the completion process and cause issues that require logging a ticket with Microsoft Azure Stack Support.
For more information, see Monitor updates in Azure Stack Hub using the privileged endpoint.
This is an example of querying the update status using the PEP:
$cred = Get-Credential
$pepsession = New-PSSession -ComputerName xxx.xxx.xxx.xxx -ConfigurationName PrivilegedEndpoint -Credential $cred
$log = Invoke-Command -Session $pepSession -ScriptBlock { Get-AzureStackUpdateVerboseLog }
$log > ".\UpdateVerboseLog2.txt"
get-content UpdateVeboseLog.txt -Tail 24
After the installation finishes, to validate the status of the Azure Stack Hub and resolve any post-installation issues, run Test-AzureStack -Group UpdateReadiness from the PEP.
Notes