Forum Discussion
BryanHeath
Apr 08, 2020Copper Contributor
Deplyment Failing in South Central US - VM has reported a failure when processing extension 'dscexte
Hello, I am using two different tenants and up until today both were failing in South Central US. However my Lab was working in East US just fine. My lab succeed at 2:07 PM for some reason. Howev...
BryanHeath
Jun 23, 2020Copper Contributor
I JUST figured out how to fix this in my prod environment.
I am not sure if this is specific to our setup or not. It is worth a shot if you are stuck.
- Disable IPv6 on nontunnel interfaces (except the loopback) and on IPv6 tunnel interface
https://support.microsoft.com/en-us/help/929852/guidance-for-configuring-ipv6-in-windows-for-advanced-users use the fix it.
- Sysprep , genralize, OBE, shutdown.
- Convert the VHD to an Image.
$disk = Get-AzDisk -ResourceGroupName 'your-rg' -DiskName 'your-disk'
$location = 'South Central US'
$imageName = 'golden-image-name-ipv6-disabled'
$rgName = 'your-rg'
$imageConfig = New-AzImageConfig `
-Location $location
$imageConfig = Set-AzImageOsDisk `
-Image $imageConfig `
-OsState Generalized `
-OsType Windows `
-ManagedDiskId $disk.Id
$image = New-AzImage `
-ImageName $imageName `
-ResourceGroupName $rgName `
-Image $imageConfig
- Deploy Session hosts to the host pool.
Good luck!!!