How do I get User Friendly Names in Remote Desktop?

6

1

Is there a way to get 'user friendly' names to show in remote desktop connection tool?

Chris

Posted 2011-01-21T19:07:33.187

Reputation: 949

what do you mean with 'user friendly names'? Hostname vs IP address? – madmaze – 2011-01-21T20:05:19.520

I mean not host or IP address, but a name that I create. – Chris – 2011-01-21T21:24:32.180

2Can't you just edit the hosts file? – Hello71 – 2011-01-21T23:01:52.920

@Hello71: how do you do that? – Chris – 2011-01-21T23:20:26.307

Answers

4

I'm pinching @Hello71's idea here, but you can edit your hosts file in Windows to add a reference to a friendly name, for a given IP address.

Open the following file in Windows Notepad or your favourite text editor (notice there is no file extension):

C:\Windows\System32\drivers\etc\hosts

In that file, you'll want to add a row at the bottom for your friendly name (the # is a comment parser and is ignored by the OS:

# Friendly name example
192.168.1.1        friendlyname

In this example, the IP address is your remote connection, and friendlyname is your chosen name. Once you save this file (in Windows XP, you would have had to refresh with nbtstat -R (or restart)), all networking related activities on your machine will work with that friendly name.

user3463

Posted 2011-01-21T19:07:33.187

Reputation:

1+1 for stealing my idea which I was too lazy to write out – Hello71 – 2011-01-22T15:43:39.293

The problem with using hosts is that it makes no allowance for dynamic addresses. If your target IP is static, then that's just fine, but suppose the target is whatever.dyndns.com or similar dynamic addressing? Unless your remote user remembers the host entry, they'll chase their tail when the address changes and their RDP session fails to connect. – Blackbeagle – 2011-01-23T10:01:48.787

@Blackbeagle, I would think this issue is mitigated by the fact that dynamic DNS allows you to choose more "friendly" names anyway. – None – 2011-01-23T17:12:55.993

4

When you configure the RDP, there is an options button on the bottom left side. Hit it, finish all your configuration and choose Save As and name it whatever you want.

Blackbeagle

Posted 2011-01-21T19:07:33.187

Reputation: 6 424

0

Well, the username is going to be whatever it is that you create, provided your referring to "username" not "computer name."

w7pro

Posted 2011-01-21T19:07:33.187

Reputation: 692