The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
28 views

WiX: Use [ComputerName] with property in Transforms.xml

I need to use the built-in variable [ComputerName] in a property in a Transforms.xml WiX file. What I'm doing: <Property Id="MYCOMPUTERNAME" VALUE="[ComputerName]" /> What shows up is: ...
0
votes
1answer
28 views

Getting the current user name or computer name in Extendscript

I'm finally getting some headway made in my script for InDesign CS6. Now, in order for it to know to which printer it should print a document, I need to query which computer the script is running on. ...
0
votes
2answers
172 views

Unable to get “user computer name”

as mentioned above after doing lot of try & error I still stuck at this, all the reference I found till now still unable to solve this issue as I can't get the real computer name at all, instead ...
0
votes
0answers
45 views

Rename/set computer (ec2) name in amazon

i try to open VPC in amazon with windows domain in one computer, and few computers would connect to it. so i made 2 types of images (AMI) one within domain controller pre-installed (with constant ...
1
vote
0answers
507 views

javascript get a computer name [duplicate]

I am trying to get client computer name in javascript but i am still unable to find that plz any one help me to find out that.here is my javascript fucntions which i tried. <script ...
2
votes
0answers
408 views

javascript is not giving the computer name

I am Trying to Get the Client Computer name using javascript like this <script language="javascript" type="text/javascript"> function GetComputerName() { try { ...
2
votes
1answer
324 views

System.getenv(“computername”) truncating return value

What is the difference between System.getenv("computername") and System.getenv("hostname") in Java? Is there any character limit on the computer name when retrieving it using the getenv() method? I ...
0
votes
1answer
163 views

Conditions for SetDirectory in Wix

I've been trying to figure out why my condition isn't working for my SetDirectory. I haven't been able to find any examples of anyone actually doing this, only that it is possible to do so, according ...
-1
votes
2answers
844 views

accessing xampp using computer name

i've installed xammp on my new notebook and i can access it using localhost or 127.0.0.1 but NOT when using the computer name. using the computer name also worked previously on my desktop pc. i've ...
1
vote
2answers
787 views

Silverlight client computer name, user name or a unique key from client

I'm trying to get a unique key from client such username or computer name but on wcf side none of the following works for me: HttpContext.Current.Request.LogonUserIdentity.Name // blank ...
1
vote
1answer
599 views

Is it possible to use computer name in iptables

I want to redirect some port from WAN to my laptop. The problem is, that the laptop has different IP on wireless as on cable LAN. Is there a way to use the computer name in iptables? Iptables port ...
0
votes
2answers
790 views

How do you get an external computer's computer name in VB.Net?

This would be easier if I were able to have the external computer get its own name and just pass it to a web service as a variable, but I'm not able to do that right now. There are a variable number ...
2
votes
2answers
599 views

Retrieve computer name

I am building a website for a company who has a software that gets registered to the computer, and uses the computer name and user name of the pc. How can I retrieve those values without the user ...
6
votes
1answer
626 views

Get Computer Names of a Lan in C#

I want to create a chat application in which there is a ComboBx. I want to fill it with all the computer names in a network. How can I accomplish this in C#?
67
votes
8answers
28k views

How can I use python to get the system name?

Note: I do NOT mean "Window XP", "Linux", "OS X", etc. I'm writing a chat program for a local network. I would like to know who says what so I would like to use python to get the user-set computer ...
0
votes
5answers
1k views

Computer name uniqueness [closed]

On LAN, does computer names have to be unique? or in other words Are computer names on a given LAN guaranteed to be unique?
0
votes
1answer
678 views

getting client computer name in a flex web application?

is it possible to obtain the computer name of the client using flex? I made a small intranet application and I need to log computer access to it. I used Flex 3.4 and web services in .net 3.5 ...
3
votes
3answers
161 views

Is this a machine name or what?

I have a third party dll, that is supposed to return machine name. Sometimes it returns \\John-PC some other times it returns \\192.168.1.120 and recently i discovered that it returns something ...
3
votes
2answers
6k views

How to get computer name or IP from javascript?

I want to get the name of the computer or its IP address through javascript. How can this be obtained?
1
vote
2answers
386 views

How can one change a Windows 2000 computer name in .NET 2.0?

I'm trying to change a computer's name (host name) on Windows 2000 using .NET 2.0. The computer is not joined to a domain. Windows XP and higher provides the WMI method Win32_ComputerSystem.Rename, ...
1
vote
5answers
3k views

What's the best method for getting the local computer name in Delphi

The code needs to be compatible with D2007 and D2009. My Answer: Thanks to everyone who answered, I've gone with: function ComputerName : String; var buffer: array[0..255] of char; size: ...
9
votes
9answers
26k views

How can I read the client's machine/computer name from the browser?

How can I read the client's machine/computer name from the browser? Is it possible using JavaScript and/or ASP.NET?