An Azure service to centrally manages updates and compliance at scale.
Azure Update Manager is blocking the update because at least one Azure CLI extension installed on the node is on a “known incompatible” list for that update. The readiness check, however, doesn’t enumerate which one, so the unsupported extensions must be identified and removed manually from the node’s Azure CLI.
Use the Azure CLI extension management commands on the affected node (AXNODE01 in the screenshot):
- List all installed extensions
This shows every extension currently loaded into the Azure CLI on that node.az extension list --output table - Remove non-required or suspect extensions
For each extension that isn’t required for Azure Stack HCI / Azure Local operations, remove it:
If an extension was installed from a custom source and is not in the official list of Azure CLI extensions, it is a strong candidate for removal.az extension remove --name <extension-name> - If an extension was installed manually on disk
If an extension doesn’t remove cleanly, delete it from the extension directory on the node:
- On Windows (default path):
%USERPROFILE%\.azure\cliextensions - On Linux/macOS:
$HOME/.azure/cliextensions
AZURE_EXTENSION_DIRis set, delete the subfolder for the extension from that directory. - On Windows (default path):
- Re-run the readiness check After removing nonessential extensions, re-run the Azure Update Manager readiness checks for the 2026.01 cumulative update. If the error persists, continue pruning extensions until only the core, required ones remain.
- Keep extensions updated and aligned with the base CLI
For any extensions that must remain, ensure they are up to date and compatible with the Azure CLI version on the node:
If a command previously provided by an extension now exists in the base CLI, uninstall the old extension and rely on the built-in command set.az extension update --name <extension-name>
This process systematically removes unsupported or obsolete Azure CLI extensions so the “ARBStack Azure CLI Known Incompatible Extensions” readiness check can pass and the update can proceed.
References: