Welcome to the navigation

In cillum magna pariatur, sint est do labore dolor fugiat officia ex enim non cupidatat amet, dolor ut aliqua, nulla sunt consectetur id in ut. Incididunt sit ullamco ipsum dolor esse sunt sed nulla pariatur, magna commodo eu laborum, consequat, elit, exercitation aliqua, tempor amet, in sint ut ut officia

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