Wednesday, February 23, 2022

virtual network creation

 $resourceGroup = "exam-grp"

$location = "North Europe"

$network = "exam-network"

$AddressPrefix="10.1.0.0/16"

New-AzVirtualNetwork -Name $network -ResourceGroupName $resourceGroup `

-Location $location -AddressPrefix $AddressPrefix


# New-AzureRmVirtualNetwork is the older version of azure module.



$resourceGroup = "exam-grp"

$location = "North Europe"

$virtualNetwork = get-azvirtualnetwork -Name $network -ResourceGroupName $resourceGroup 

Write-Host $virtualNetwork.Location

No comments:

Post a Comment