How to Find Your IP Address on Windows 10 & 11
Find Your IP Address on Windows
Whether you need your public IP for troubleshooting or your private IP for network configuration, Windows gives you several ways to find both.
Method 1: Find Your Public IP Instantly
Open any browser and visit HackMyIP.com. Your public IP address is displayed immediately, along with your location, ISP, and connection type. This is the address that websites and online services see.
Method 2: Using Windows Settings
Method 3: Using Command Prompt
cmd, press Enteripconfig and press EnterFor more detail, use ipconfig /all to see DNS servers, DHCP status, and MAC address.
Method 4: Using PowerShell
Get-NetIPAddress | Where-Object {$_.AddressFamily -eq 'IPv4'}Find Your Public IP from Command Line
To get your public IP directly from the command line, run: curl https://hackmyip.com/api/ip. This returns your public IP in JSON format, useful for scripts and automation.
Troubleshooting IP Issues on Windows
If your IP shows as 169.254.x.x, your computer failed to get an address from DHCP. Try running ipconfig /release followed by ipconfig /renew. If problems persist, restart your router.
For privacy and security testing, run a DNS leak test and WebRTC leak test to ensure your VPN is working properly on Windows.