On the node-->go to C:\ProgramData\GuestConfig\extension_logs\Microsoft.Edge.DeviceManagementExtension\
see if there is edgedevice.txt file.
Delete this file and it will be auto created in 10 mins.
Rerun the validation and you should be good
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I have registered the system PatrasA with AzureARC using the below link.
https://learn.microsoft.com/en-us/azure-stack/hci/deploy/deployment-arc-register-server-permissions?tabs=powershell
while validating the nodes from the AzurePortal hit the below error. Any help for the troubleshooting?
On the node-->go to C:\ProgramData\GuestConfig\extension_logs\Microsoft.Edge.DeviceManagementExtension\
see if there is edgedevice.txt file.
Delete this file and it will be auto created in 10 mins.
Rerun the validation and you should be good
Hi @Yall
Thank you for reaching out to the Microsoft Q&A platform.
Please check this blog https://techcommunity.microsoft.com/t5/fasttrack-for-azure/common-deployment-challenges-and-workarounds-for-hci-23h2/bc-p/4065366/highlight/true
Cause #1
Cause #2
This could also be due to the windows update released on October 11 2022
Resolution: in each node create the following registry key #Add reg key for legacy doman join Write-Host "Add legacy domain join registry key" -ForegroundColor Green # Create a new registry key (if it doesn't exist) try{ $RegPath = "HKLM:\System\CurrentControlSet\Control\LSA" $RegValue = "NetJoinLegacyAccountReuse" $RegistryKey = Get-Item -Path $RegPath -ErrorAction SilentlyContinue if ($RegistryKey.GetValueNames() -contains $RegValue) { # Value exists Write-host "Registry Key already exists, skipping" -ForegroundColor Green } else { # Value does not exist New-ItemProperty -Path $regPath -Name $RegValue -Value 1 -PropertyType DWord } } catch{Write-Host "An error occurred: $($_.Exception.Message)"}
Troubleshooting guide for any other resource not found errors https://learn.microsoft.com/en-us/azure/azure-resource-manager/troubleshooting/error-not-found?tabs=bicep
Please Accept Answer and hit Yes for "was this answer helpful" if this helps