I think i found a solution...
In the event log "Applications and Services" => "AzStackHCIEnvironmentChecker" i found two errors,
- Checking version of PS module 'Az.StackHCI' on host 'Node2'. Got '2.5.0' but expected '2.2.3'
- Checking version of PS module 'Az.Accounts' on host 'Node2'. Got '4.0.2' but expected '3.0.5'
So i checked the installed modules with
Get-InstalledModule
Uninstalled the current versions and installed the expected one:
Uninstall-Module Az.StackHCi -AllVersions -Force
Install-Module Az.StackHCI -RequiredVersion 2.2.3 -force -AllowClobber
Uninstall-Module Az.Accounts -AllVersions -Force
Install-Module Az.Accounts -RequiredVersion 3.0.5 -force
I did this on every node.
It seems to installing now: