Quick PowerShell Tip!
To list all of the IP addresses, both v4 and v6 on your local system, along with the associated interface name issue the following command:
Get-NetIPAddress | Select IPAddress, InterfaceAlias | Out-GridView
What you get from the above command is a grid view output which can be copied and pasted into a document.