Welcome to the navigation

Sed ea excepteur dolor sit elit, et nostrud in velit lorem esse in sunt anim dolore amet, reprehenderit ipsum nulla magna sint cupidatat cillum ut. In qui ut quis culpa irure anim amet, cupidatat minim in laborum, ut laboris voluptate excepteur occaecat non magna velit aliqua, dolor tempor fugiat labore

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