Welcome to the navigation

Ipsum consequat, ut excepteur labore elit, lorem laborum, et sed ad ut in occaecat amet, ut tempor non eu nostrud fugiat mollit esse dolore velit. Dolor elit, velit minim nulla tempor ut est proident, laboris sit sint laborum, in consectetur cillum culpa anim consequat, do occaecat sunt reprehenderit aliqua, ea

Yeah, this will be replaced... But please enjoy the search!

Getting IP addresses using windows PowerShell

Tired of using ipconfig?

Listing your IP addresses using PowerShell is simple, utilize the Get-NetIPAddress command. I like to clean up my outputs a bit extending the command like this

Get-NetIPAddress |  Where-Object { $_.AddressFamily -eq "IPv4" -and $_.AddressState -eq "Preferred" } | Select-Object IPAddress, InterfaceAlias

This command will return