Skip to content

Commit

Permalink
Update Get-NetIPConfiguration.md
Browse files Browse the repository at this point in the history
FIxed my typo.
  • Loading branch information
doctordns committed Sep 24, 2020
1 parent 2674649 commit 05c751e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docset/winserver2012r2-ps/nettcpip/Get-NetIPConfiguration.md
Expand Up @@ -56,29 +56,29 @@ When this cmdlet is run without parameters, it gets the IP configuration informa

### Example 2: Get all IP configuration details
```powershell
PC C:\> Get-NetIPConfiguration -All
PS C:\> Get-NetIPConfiguration -All
```

This command gets the IP configuration information for all of the interfaces on the computer, including virtual interfaces, loopback interfaces, and disconnected interfaces.

### Example 3: Get the IP configuration information with a common parameter
```powershell
PC C:\> Get-NetIPConfiguration -Verbose
PS C:\> Get-NetIPConfiguration -Verbose
```

This command gets IP configuration information.
By using the **Verbose** parameter, the networking cmdlets are shown to gather and format the information displayed in this cmdlet.

### Example 4: Get the IP configuration by interface index
```powershell
PC C:\> Get-NetIPConfiguration -InterfaceIndex 12
PS C:\> Get-NetIPConfiguration -InterfaceIndex 12
```

This command gets the IP configuration information for the interface at the index 12.

### Example 5: Get the IP configuration from pipeline input
```powershell
PC C:\> Get-NetIPConfiguration | Get-NetIPAddress
PS C:\> Get-NetIPConfiguration | Get-NetIPAddress
```

This command gets the IP address information, including the prefix length.
Expand Down

0 comments on commit 05c751e

Please sign in to comment.