Powershell Tip #88: List all IP Addresses for a computer By powershellgu | December 5, 2015 3 Comments Tip: You can list all IP addresses for a computer: PowerShell #requires -Version 1 -Modules NetTCPIP Get-NetIPAddress | Sort-Object -Property InterfaceAlias | Format-Table -Property InterfaceAlias, InterfaceIndex, AddressFamily, IPAddress, PrefixLength, Type -AutoSize 1234 #requires -Version 1 -Modules NetTCPIPGet-NetIPAddress |Sort-Object -Property InterfaceAlias |Format-Table -Property InterfaceAlias, InterfaceIndex, AddressFamily, IPAddress, PrefixLength, Type -AutoSize Another way :
Pingback: Powershell Tip #87: Set keyboard layout | Powershell Guru
Pingback: Powershell Tip #89: List shares | Powershell Guru
Pingback: Powershell Tip #89: List shares on local and remote computer | Powershell Guru