Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
How to retrieve the Azure subnets connected to the virtual network using PowerShell?
To get all the subnets attached to the virtual network using PowerShell, we need to use the GetAzVirtualNetwork command.
PS C:\> $vn = Get-AzVirtualNetwork -Name VirtualNetworkName
To get the Subnets and its address prefix details, you need to filter out the Subnets and AddressPrefix
PS C:\> $vn.Subnets | Select Name, AddressPrefix
Advertisements
