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...
wilsonosorio
Apr 17, 2020Copper Contributor
BryanHeath
Good morning Bryan, I have the same problem, could you solve it somehow?
BryanHeath
Jun 23, 2020Copper Contributor
- Create a new VM from your disk template. I suggest you create a separate RG for workspaces.
- 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 (your mojo)
$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 new Host pool and Session hosts with the new image