Skip to content

Commit de5677a

Browse files
authored
Update Set-AzNetworkInterface.md (#15112)
fix spelling of fourth in three places.
1 parent 5d86ea7 commit de5677a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Network/Network/help/Set-AzNetworkInterface.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ The first command gets the network interface NetworkInterface1 and stores it in
7070
>[!NOTE]
7171
>The IP configurations must be dynamic before you can change the subnet. If you have static IP configurations, change then to dynamic before proceeding.
7272
>[!NOTE]
73-
>If the network interface has multiple IP configurations, the forth command must be done for all these IP configurations before the final Set-AzNetworkInterface command is executed. This can be done as in the forth command but by replacing "0" with the appropriate number. If a network interface has N IP configurations, then N-1 of these commands must exist.
73+
>If the network interface has multiple IP configurations, the fourth command must be done for all these IP configurations before the final Set-AzNetworkInterface command is executed. This can be done as in the fourth command but by replacing "0" with the appropriate number. If a network interface has N IP configurations, then N-1 of these commands must exist.
7474
7575
### Example 5: Associate/Dissociate a Network Security Group to a network interface
7676
```
@@ -80,7 +80,7 @@ $nic.NetworkSecurityGroup = $nsg
8080
$nic | Set-AzNetworkInterface
8181
```
8282

83-
The first command gets an existing network interface called NetworkInterface1 and stores it in the $nic variable. The second command gets an existing network security group called MyNSG and stores it in the $nsg variable. The third command assigns the $nsg to the $nic. Finally, the forth command applies the changes to the Network interface. To dissociate network security groups from a network interface, simple replace $nsg in the third command with $null.
83+
The first command gets an existing network interface called NetworkInterface1 and stores it in the $nic variable. The second command gets an existing network security group called MyNSG and stores it in the $nsg variable. The third command assigns the $nsg to the $nic. Finally, the fourth command applies the changes to the Network interface. To dissociate network security groups from a network interface, simple replace $nsg in the third command with $null.
8484

8585
## PARAMETERS
8686

0 commit comments

Comments
 (0)