Skip to content

Instantly share code, notes, and snippets.

@leafnode
Created January 30, 2019 13:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leafnode/ab6ea6ebb848a9ab6552a84f3822de16 to your computer and use it in GitHub Desktop.
Save leafnode/ab6ea6ebb848a9ab6552a84f3822de16 to your computer and use it in GitHub Desktop.
Enable Accelerated Networking on Azure net interface
Select-AzSubscription "SubscriptionName"
$nic = Get-AzureRmNetworkInterface -ResourceGroupName "ResourceGroupName" -Name "networkInterfaceName"
$nic.EnableAcceleratedNetworking = $true
$nic | Set-AzureRmNetworkInterface
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment