Are you talking about a web client of an ASP page? If so you would have to settle for the DNS name (if any) associated with the IP address you can see. You can't see their NetBIOS name.
If this is a WSH script run on their computer, there is a ComputerName property of the WshNetwork object. See the WSH documentation. Basically:
Set WshNetwork = WScript.CreateObject("WScript.Network"
WScript.Echo "Computer Name = " & WshNetwork.ComputerName
xutopia I don't want to burst your bubble, WshNetwork isn't as powerful as the name might suggest. It can tell you a little about your local computer's network ID stuff, can map printers and shares, and that's about it.
This is a WSH object, so you can find it in the Windows Script 5.6 docs, downloadable from:
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.