Skip to content

Commit 27422f1

Browse files
authored
Broken link fixed
1 parent 5c9fd2a commit 27422f1

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

articles/virtual-network-manager/create-virtual-network-manager-powershell.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Install-Module -Name Az.Network -AllowPrerelease
4444

4545
## Create Virtual Network Manager
4646

47-
1. Define the scope and access type this Azure Virtual Network Manager instance will have. You can choose to create the scope with subscriptions group or management group or a combination of both. Create the scope by using [New-AzNetworkManagerScope](/powershell/module/az.network/new-aznetworkmanagerscope).
47+
1. Define the scope and access type this Azure Virtual Network Manager instance will have. You can choose to create the scope with subscriptions group or management group or a combination of both. Create the scope by using New-AzNetworkManagerScope.
4848

4949
```azurepowershell-interactive
5050
[System.Collections.Generic.List[string]]$subGroup = @()
@@ -59,7 +59,7 @@ Install-Module -Name Az.Network -AllowPrerelease
5959
$scope = New-AzNetworkManagerScope -Subscription $subGroup -ManagementGroup $mgGroup
6060
```
6161
62-
1. Create the Virtual Network Manager with [New-AzNetworkManager](/powershell/module/az.network/new-aznetworkmanager). This example creates an Azure Virtual Network Manager named **myAVNM** in the West US location.
62+
1. Create the Virtual Network Manager with New-AzNetworkManager. This example creates an Azure Virtual Network Manager named **myAVNM** in the West US location.
6363
6464
```azurepowershell-interactive
6565
$avnm = @{
@@ -150,7 +150,7 @@ $virtualnetworkC | Set-AzVirtualNetwork
150150

151151
### Static membership
152152

153-
1. Create a static virtual network member with [New-AzNetworkManagerGroupMembersItem](/powershell/module/az.network/new-aznetworkmanagergroupmembersitem).
153+
1. Create a static virtual network member with New-AzNetworkManagerGroupMembersItem.
154154

155155
```azurepowershell-interactive
156156
$member = New-AzNetworkManagerGroupMembersItem –ResourceId "/subscriptions/abcdef12-3456-7890-abcd-ef1234567890/resourceGroups/myAVNMResourceGroup/providers/Microsoft.Network/virtualNetworks/VNetA"
@@ -178,7 +178,7 @@ $virtualnetworkC | Set-AzVirtualNetwork
178178
}'
179179
```
180180
181-
1. Create the network group using the conditional statement defined in the last step using [New-AzNetworkManagerGroup](/powershell/module/az.network/new-aznetworkmanagergroup).
181+
1. Create the network group using the conditional statement defined in the last step using New-AzNetworkManagerGroup.
182182
183183
```azurepowershell-interactive
184184
$ng = @{
@@ -194,7 +194,7 @@ $virtualnetworkC | Set-AzVirtualNetwork
194194
195195
## Create a configuration
196196
197-
1. Create a connectivity group item to add a network group to with [New-AzNetworkManagerConnectivityGroupItem](/powershell/module/az.network/new-aznetworkmanagerconnectivitygroupitem).
197+
1. Create a connectivity group item to add a network group to with New-AzNetworkManagerConnectivityGroupItem.
198198
199199
```azurepowershell-interactive
200200
$gi = @{
@@ -210,7 +210,7 @@ $virtualnetworkC | Set-AzVirtualNetwork
210210
$configGroup.Add($groupItem)
211211
```
212212
213-
1. Create the connectivity configuration with [New-AzNetworkManagerConnectivityConfiguration](/powershell/module/az.network/new-aznetworkmanagerconnectivityconfiguration).
213+
1. Create the connectivity configuration with New-AzNetworkManagerConnectivityConfiguration.
214214
215215
```azurepowershell-interactive
216216
$config = @{
@@ -225,7 +225,7 @@ $virtualnetworkC | Set-AzVirtualNetwork
225225
226226
## Commit deployment
227227
228-
Commit the configuration to the target regions with [Deploy-AzNetworkManagerCommit](/powershell/module/az.network/deploy-aznetworkmanagercommit).
228+
Commit the configuration to the target regions with Deploy-AzNetworkManagerCommit.
229229
230230
```azurepowershell-interactive
231231
[System.Collections.Generic.List[string]]$configIds = @()
@@ -251,7 +251,7 @@ If you no longer need the Azure Virtual Network Manager, you'll need to make sur
251251
* All configurations have been deleted.
252252
* All network groups have been deleted.
253253

254-
1. Remove the connectivity deployment by deploying an empty configuration with [Deploy-AzNetworkManagerCommit](/powershell/module/az.network/deploy-aznetworkmanagercommit).
254+
1. Remove the connectivity deployment by deploying an empty configuration with Deploy-AzNetworkManagerCommit.
255255

256256
```azurepowershell-interactive
257257
[System.Collections.Generic.List[string]]$configIds = @()
@@ -267,7 +267,7 @@ If you no longer need the Azure Virtual Network Manager, you'll need to make sur
267267
Deploy-AzNetworkManagerCommit @removedeployment
268268
```
269269
270-
1. Remove the connectivity configuration with [Remove-AzNetworkManagerConnectivityConfiguration](/powershell/module/az.network/remove-aznetworkmanagerconnectivityconfiguration)
270+
1. Remove the connectivity configuration with Remove-AzNetworkManagerConnectivityConfiguration
271271
272272
```azurepowershell-interactive
273273
$removeconfig = @{
@@ -278,7 +278,7 @@ If you no longer need the Azure Virtual Network Manager, you'll need to make sur
278278
Remove-AzNetworkManagerConnectivityConfiguration @removeconfig
279279
```
280280
281-
1. Remove the network group with [Remove-AzNetworkManagerGroup](/powershell/module/az.network/remove-aznetworkmanagergroup).
281+
1. Remove the network group with Remove-AzNetworkManagerGroup.
282282
283283
```azurepowershell-interactive
284284
$removegroup = @{
@@ -289,7 +289,7 @@ If you no longer need the Azure Virtual Network Manager, you'll need to make sur
289289
Remove-AzNetworkManagerGroup @removegroup
290290
```
291291
292-
1. Delete the network manager instance with [Remove-AzNetworkManager](/powershell/module/az.network/remove-aznetworkmanager).
292+
1. Delete the network manager instance with Remove-AzNetworkManager.
293293
294294
```azurepowershell-interactive
295295
$removenetworkmanager = @{

0 commit comments

Comments
 (0)