My Humble Attempt at AVD / W365 Traffic Routing

So, you want to direct AVD / W65 traffic straight to AVD services without any detours or traffic jams? I’ve got just the trick for you! Feast your eyes on this two-liner code wonder:

$cfg = New-AzRouteConfig -Name "WindowsVirtualDesktopRoute" -AddressPrefix "WindowsVirtualDesktop" -NextHopType "Internet"
$routeTable = New-AzureRmRouteTable -ResourceGroupName w365poc -Location centralus -Name UDR-AVD -Route $cfg


In a nutshell, this code creates a User-Defined Route (UDR) that acts as your personal traffic director, ensuring that AVD traffic goes directly where it needs to go. No more forced detours or dropped traffic. This little gem comes in handy when customers insist on directing all their traffic back on premises.

Say goodbye to traffic congestion and hello to streamlined AVD services. Time to take control of your traffic destiny!

Here is the code on my Github Repo

Related Posts