Answer by ClioCJS for Fastest method to determine my PC's IP address (Windows)
If you use JPSoft's TakeCommand (TCMD.exe) Command-line, there's an automatic variable:%_IPBe careful, though: It is a space-delimited list of every IP address.
View ArticleAnswer by Jake for Fastest method to determine my PC's IP address (Windows)
Just to expand on Amadeu's great answer, here's a variant of that that strips off the beginning part. (must be run as a batch file)@ECHO OFF FOR /F "tokens=*" %%i in ('ipconfig ^| find "IPv4"') do SET...
View ArticleAnswer by scunliffe for Fastest method to determine my PC's IP address (Windows)
There seemed to be several solutions to this problem and I even came up with one of my own.Similar to @iglvzx I too used the AutoHotKey utility to create my own utility app.I've posted the app online...
View ArticleAnswer by Jay Bazuzi for Fastest method to determine my PC's IP address...
If you're cool, you'll keep a PowerShell window handy at all times. Then you can just run this script: http://pshscripts.blogspot.com/2009/01/get-ipaddressps1.html
View ArticleAnswer by PMC for Fastest method to determine my PC's IP address (Windows)
Install realvnc on your pc, hover your mouse over the task bar notification. RealVNC provides remote control software which lets you see and interact with desktop applications across any network.
View ArticleAnswer by rjmunro for Fastest method to determine my PC's IP address (Windows)
This doesn't get your IP address but does solve your underlying problem:Install Apple Bonjour for Windows on the machines you use, and you can reach the websites on them as http://[machinename].local/....
View ArticleAnswer by iglvzx for Fastest method to determine my PC's IP address (Windows)
I've come up with a solution using AutoHotkey. Compile the script and then run the executable. Your IP address will be quickly copied to the clipboard! This takes the first address from the the output...
View ArticleAnswer by Vishwanath Dalvi for Fastest method to determine my PC's IP address...
C:\Documents and Settings\myusername> ipconfig /all | find "IP Address" IP Address. . . . . . . . . . . . : 16.138.69.121andC:\Users\dalvi>ipconfig /all | find "IPv4 Address" IPv4 Address. . . ....
View ArticleAnswer by user606723 for Fastest method to determine my PC's IP address...
Have you tried using a netbios hostname instead?Figure out your computer name, and then try to ping it using that name on a different computer.You may find you don't need the IP address at all.You can...
View ArticleAnswer by user606723 for Fastest method to determine my PC's IP address...
While all the other options will work, if you need to get your IP address that often, I would have a dedicated program running just to deliver it to you.For instance, I use a desktop gadget that...
View ArticleAnswer by Dennis for Fastest method to determine my PC's IP address (Windows)
This doesn't work on my XP box but on Windows 7 I can limit the info to a single adapter with netsh interface IP show addresses "Local Area Connection" | findstr "IP" | clipWhich could go into a batch...
View ArticleAnswer by Amadeusz Wieczorek for Fastest method to determine my PC's IP...
Type this into a .bat file. You can then create a shortcut to it and place it in the taskbar, start menu, or assign a hotkey.ipconfig | find "IPv4" | find /V "192.168." | CLIPWhat it does: First find...
View ArticleAnswer by Nate Koppenhaver for Fastest method to determine my PC's IP address...
I use www.whatismyip.org. Very simple to use, just navigate to the site in your favorite browser and it will display your external IP. Like any text, just highlight and CTRL-C to copy. If you set it as...
View ArticleAnswer by Mitch for Fastest method to determine my PC's IP address (Windows)
Create a shortcut to BGinfo (a program that shows system information on the Windows background). Double-click. : )
View ArticleAnswer by Amadeusz Wieczorek for Fastest method to determine my PC's IP...
[WindowsKey] IP [Enter] to open "View network connections"Double click on your network Click on "Details"You can Ctrl+C inside, it will copy whole window content, including the IP addressesThere you...
View ArticleFastest method to determine my PC's IP address (Windows)
This may seem trivial but I'm looking for the quickest method to determine my PC's IP address within my network.This changes regularly as I connect from one network to the next via DHCPThe connection...
View Article