赞
踩
Here are some common scenarios in question:
You can leverage the below given PS script in order to find the zone names which have a link with the vnet in question:
Connect-AzAccount
Write-host"Here is a list of subscription available to you"Get-AzSubscription | format-table-property Subscriptionid, Name
$Subid= Read-Host"Enter the SubscriptionID you need to search the vnet link in"Connect-AzAccount -Subscription $subid$ResourceGroups= Get-AzResourceGroup
$ResourceGroupsNames= $ResourceGroups.ResourceGroupName
$VNETID=
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。