How to Find the IP Address of Your Windows 10 PC
If you want to remote desktop into a computer or other device, you need to know the PC or device’s IP address. Here’s how to find it in Windows 10.
Your computer’s IP address (Internet Protocol) is, as the name suggests, an address that provides an identity for your device on a network. Whether it’s a local network within an intranet at a business, your home, or a massive network such as the Internet. Every website you visit on the Internet uses a unique IP address, too. But luckily for that, we can use simple names like Microsoft.com using DNS.
Why would you want to know your IP address, though? We live in a world where we are surrounded by multiple devices that need to talk to each other. Whether connecting two computers in a peer-to-peer fashion for sharing resources or accessing another device remotely, if you need to troubleshoot devices on a network, knowing your IP Address can help a lot.
Finding the IP Address of a Windows 10 PC
There are a few ways you can find your IP address. Let’s start with the easiest method to use the UI and not the command line.
Go to Settings > Network & Internet. Then select either Wi-Fi or Ethernet (depending on how the device connects). In this example, I’m connected to Ethernet.
Then select the Ethernet Connected icon. Scroll down to the Properties section, and you’ll see your IPV4 address information.
Finding your Wi-Fi IP address is a bit different. You still go to Settings > Network & Internet, but then select Advanced options. Then scroll down to the Properties section to see the IP address of the device.
Find an IP Address Using the Command Prompt
Hit the Windows key on your keyboard and type: cmd, and select the “Run as Admin” option from the menu.
Now type: ipconfig, then press the Enter key.
In this case, I am connected to both Wireless and Wired networks, so I have IP addresses displayed for both.
Finding your IP address on Windows PCs hasn’t changed much over the years. But if you haven’t upgraded to Windows 10 yet, you might be interested in how to find your local IP address on Windows 7.
Also, if you have several devices on your home network, read our article on how to find the IP of all connected devices on your network the easy way.
DutchieHfx
January 28, 2016 at 9:31 am
Thanks, Andre, for the above information.
Could you possibly add the commands / menu choices for Windows 10 with Classical Shell / Menu?
My ipconfig menu looks very different from yours. I was able to get my IP address (IPv4), but didn’t see one for my internet connection. Wouldn’t I need that for remote access?
I am a self-taught baby boomer with lots of questions!
Temiloluwa
August 28, 2021 at 1:51 pm
Thanks for this, it really helped
Hossein
July 9, 2016 at 4:36 am
Hi
I want to find my real host id in order to register the PTC software using “ipconfig/all” in CMD,
the ID should start with 00 or 08 but it isn’t !
Can you help me
Thanks
Hossein
Ethan Pierce
September 28, 2016 at 7:24 pm
I’m on Windows 10 and I followed every single step the right way but I still cannot find “Advanced options”! Where is it? Did they change the location in the new update?
Isabel Murray
October 18, 2016 at 8:12 am
I had the same experience as Ethan Pierce (28.9.16). I eventually got it by using the 2nd method.
Randy A MacDonald
October 26, 2016 at 7:35 am
“Go to Settings > Network & Internet.” is of no help, since the Desktop does not seem to be the starting point as nothing matching ‘Settings’ is visible, and clicking nor right-clicking the (formerly the Start icon) Windows icon reveals no ‘Settings’
Dave Stone
November 17, 2016 at 7:57 am
Windows + X.
The easy shortcut
Tom Bohnstedt
December 17, 2017 at 4:21 pm
This article seemed to be what I was looking for, but the pictures of the Windows 10 menus don’t match what I’m looking at in the real world. For example, I open “Network and Internet” settings, but there is NO “Advanced Options” in the menu.
Methusla
September 7, 2019 at 5:51 am
Find computer I.P. address for Windows 10
(save this as text somewhere)
winkey + X
gets a choice of command shell or settings, listed on the left. (Read it.)
A
brings up command shell as admin
command:
ipconfig
see the list, e.g.:
Connection-specific DNS Suffix . :
Link-local IPv6 Address . . . . . : xx::yy:zz:123:45
Autoconfiguration IPv4 Address. . : 15.16.17.18
Subnet Mask . . . . . . . . . . . : 255.255.0.0
Default Gateway . . . . . . . . . :
Works even when disconnected
Methusla
September 7, 2019 at 6:25 am
Apologies that would give the ‘local’ IP.
Other methods may just return the router address.
For your ‘public’ IP, your WAN address, you can ask an external website such as ipinfo.io (if connected)
eg
use cortana search to get powershell
command:
Invoke-RestMethod ipinfo.io/ip
or
Invoke-RestMethod trackip.net/ip
or e.g.
(new-object net.webclient).DownloadString(‘http://www.trackip.net/ip’)
this will return external IP.