This Azure PowerShell article will discuss how to create an Azure route table Using the PowerShell command New-AzRouteTable.
You can use the New-AzRouteTable PowerShell command to create a Route table under a specified Resource Group quickly.
Table of Contents
Syntax of New-AzRouteTable
Below is the syntax of the New-AzRouteTable PowerShell command.
New-AzRouteTable
-ResourceGroupName <String>
-Name <String>
-Location <String>Example
Executed the below PowerShell script that created a new Route table TsinfoRTNew under DEMORG1 Resource Group at the “EastUs” location.
New-AzRouteTable -ResourceGroupName "DEMORG1" -Name "TsinfoRTNew" -Location "EastUs"After executing the above PowerShell script, I got the below-expected output and the new Route table has been created successfully.
Name : TsinfoRTNew
ResourceGroupName : DEMORG1
Location : eastus
Id : /subscriptions/1cdf4300-dee5-4518-9c9c-feaa72a5cbd1/resourceGroups
/DEMORG1/providers/Microsoft.Network/routeTables/TsinfoRTNew
Etag : W/"a74e0230-0bc0-4a31-b19d-befba7f5ee6d"
ProvisioningState : Succeeded
Tags :
Routes : []
Subnets : []You can check out the same output in the below screenshot.

You may also like following the articles below
Wrapping Up
This article discussed how to use the New-AzRouteTable PowerShell command to create an Azure route table. Thanks for reading this article !!!

I am Rajkishore, and I am a Microsoft Certified IT Consultant. I have over 14 years of experience in Microsoft Azure and AWS, with good experience in Azure Functions, Storage, Virtual Machines, Logic Apps, PowerShell Commands, CLI Commands, Machine Learning, AI, Azure Cognitive Services, DevOps, etc. Not only that, I do have good real-time experience in designing and developing cloud-native data integrations on Azure or AWS, etc. I hope you will learn from these practical Azure tutorials. Read more.
