winnt start /run/ipconfig |you wil see all yor net setinngs
win9x start /run/winipcfg
as much i understand you wanto see your ip then thiss should help
if not plz explain you self beter
Main Topics
Browse All Topicshow can i display my ip address as text?
i've seen this done before
say for example on a website that has a script that logs ip addresses that have visited it someone can have their ip show as a word
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
<HTML>
<HEAD>
<TITLE> Get the visitor's IP address </TITLE>
<!-- Include the serverside IP script -->
<SCRIPT LANGUAGE="JavaScript" src="http://www.jwscripts.
</SCRIPT>
<SCRIPT LANGUAGE="JavaScript">
function getIP() {
if (!document.all && !navigator.userAgent.match
return (java.net.InetAddress.getL
} else {
// Browsing with IE, Mozilla or Java disabled: Use serverside script
return ip;
}
}
</SCRIPT>
</HEAD>
<BODY>
<SCRIPT LANGUAGE="JavaScript">
document.writeln('<h3>Your
</SCRIPT>
</BODY>
</HTML>
hi
hey can u try this java prg
import java.net.*;
class IPAdd {
public static void main(String args[]) {
try {
InetAddress ip= InetAddress.getLocalHost()
System.out.println("IP Address:"+ ip);
System.out.println("Host Name:"+ ip.getHostName());
}catch(UnknownHostExceptio
System.out.println("cant find host:"+e);
}
}
}
this program will sure give u ur ip address in a text format
Hi
You can use Access Stats 1.12 free script . Please check the demo and click on the lefthand site logfile.txt
http://www.proxy2.de/scrip
rsdn
Well, I don't really agree. The fact that question is only 50 pts doesn't mean that the asker can just drop the question. Also there are several answers, all of which make sense but just interpret the question in different ways. Since the asker has never bothered to add comments or better specify what he was looking for, I think the question should be closed splitting points among all answerers.
Business Accounts
Answer for Membership
by: ShadowWarrior111Posted on 2004-03-28 at 22:22:29ID: 10701718
If you are using Windows, open a command prompt, and then "ping -a <your IP>".
I hope this is what you looking for.