Summary: Use Windows PowerShell to retrieve IP addresses.
Is there a way to use Windows PowerShell to check IP addresses without use IPconfig?
In Windows Server 2012 R2, use the new Get-NetIPAddress cmdlet:
Get-NetIPAddress
If you like the output in a table, use:
Get-NetIPAddress | Format-Table