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?

link|improve this question

62% accept rate
1  
Is the computer's IP static? – SgtOJ Dec 1 '10 at 8:05
feedback

2 Answers

up vote 0 down vote accepted

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.

link|improve this answer
feedback

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.