diff --git a/docset/winserver2012r2-ps/nettcpip/Get-NetIPConfiguration.md b/docset/winserver2012r2-ps/nettcpip/Get-NetIPConfiguration.md index eb18f1e382..cd73066c3e 100644 --- a/docset/winserver2012r2-ps/nettcpip/Get-NetIPConfiguration.md +++ b/docset/winserver2012r2-ps/nettcpip/Get-NetIPConfiguration.md @@ -56,14 +56,14 @@ 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. @@ -71,14 +71,14 @@ By using the **Verbose** parameter, the networking cmdlets are shown to gather a ### 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.