Tagged Questions

2
votes
3answers
811 views

Does anyone know a way to get the FQDN of local machine in C#?

How can you get the FQDN of a local machine in C#?
1
vote
4answers
230 views

Sorting domain names

Has anyone implemented sorting a list of domain names? I have seen some applications sort them as flat strings, but the problem is that you end up scattering all the related hosts …
0
votes
0answers
20 views

Where can I get FQDN in my local set-up?

Hi Experts, I would like to ask where to get the FQDN in my local Set-up having a Windows Server 2003 as my Server and having a multiple clients connected and enrolled in Server's …
0
votes
2answers
257 views

Get unqualified host name in .NET

Is there a .NET equivalent to the winsock function GetNameInfoW() with the NI_NOFQDN flag set? As the MSDN docs for GetNameInfoW explain: Setting the NI_NOFQDN flag results in …
0
votes
1answer
1k views

Translating NETBIOS domain into a FQDN (Fully Qualified Domain Name)

In short - How do I translate a NETBIOS domain to a FQDN ? Details: Assuming I'm in domain A and I have user credentials for domain B which has a trust relationship with domain A …
0
votes
3answers
332 views

NetBIOS vs. FQDN

Hi! I've got an issue when accessing a web site, I can access it by using the NetBIOS name, but when accessing with the FQDN i get an error. Any ideas on how to troubleshoot this …
0
votes
2answers
399 views

How can I get the FQDN of the current host in Ruby?

I need to get the fully expanded hostname of the host that my Ruby script is running on. In Perl I've used Sys::Hostname::Long with good results. Google seems to suggest I should …