using computer name with Remote desktop

1

Hey there, I'm trying to remote control a computer in my home network (workgroup).

I don't have an internal DNS server.

I want to use the computer name instead of having to type the IP of the computer in every time I want to control it.

Is this possible without a DNS?

blsub6

Posted 2010-12-01T07:37:59.753

Reputation: 867

1Is the computer's IP static? – SgtOJ – 2010-12-01T08:05:25.227

Answers

0

You can either edit your hosts file under C:\Windows\system32\drivers\etc if the IP of the computer is static:

169.123.123.1 MyOtherComputer

and you can access the computer via //MyOtherComputer then. You also might want to look into NetBIOS over TCP/IP which gives you the ability to have speaking names on a network without a DNS server.

Dennis G

Posted 2010-12-01T07:37:59.753

Reputation: 1 124

0

You can edit your hosts file in %windir%\system32\drivers\etc - enter a line in the host file like this:

192.168.1.42 targetpcname

where 192.168.1.42 is the IP of the remote computer you're trying to control and targetpcname is the name of that computer.

Multiverse IT

Posted 2010-12-01T07:37:59.753

Reputation: 4 228