Summary: Use Windows PowerShell 3.0 in Windows 8 to find the IP configuration of a specifically named IP adapter.
How can I use Windows PowerShell 3.0 in Windows 8 to easily find the IP address configuration of a network adapter named External Ethernet Apapter?
Use a wildcard character with the Get-NetAdapter function and pipe the results to the Get-NetIPAddress function:
Get-NetAdapter -Name *external* | Get-NetIPAddress