PoshTip #23 – How to get your ip address?

PoshTip #23 – How to get your ip address?

PowerShell is a great way to retrieve your IP Address, especially in a script. You can use WMI with the Get-WMIObject cmdlet to display your network card:

Get-WmiObject Win32_NetworkAdapterConfiguration

Add the Where-Object clause to show only network card with an IP Address:

gwmi Win32_NetworkAdapterConfiguration | ? {$_.IPAddress -ne $null}

Ok, now just add the ipaddress property:

(gwmi Win32_NetworkAdapterConfiguration | ? {$_.IPAddress -ne $null}).IPAddress

Below is the output:

pstip23

 

Thanks for reading! You can follow me on Twitter @PrigentNico

About Nicolas 282 Articles
I work as an IT Production Manager, based in Paris (France) with a primary focus on Microsoft technologies. I have 10 years experience in administering Windows Servers. . I am a Microsoft MVP for Cloud & Datacenter Management. I also received the PowerShell Hero 2016 award by PowerShell.0rg. And finally, I am "MCSE: Cloud Platform and Infrastructure", "MCSA: Windows Servers", "Administering & Deploying SCCM", and CheckPoint CCSA certified.