Machine's domain name in .NET?

前端 未结 6 999
小蘑菇
小蘑菇 2021-02-03 22:47

There gotta be an easy way to do this, I can\'t believe there\'s none. I have scanned through net and found, like, 20 different methods to find in which domain current user is,

6条回答
  •  野性不改
    2021-02-03 23:10

    I work on a project where users could be anywhere; non-domain users on a domain machine, users on a non-domain machine, not directly connected to the domain on a third party network, etc. so depending on AD is already a non-starter.

    System.Net.NetworkInformation.IPGlobalProperties.GetIPGlobalProperties().DomainName is far more reliable under all of these conditions.

    http://blogs.msdn.com/b/trobbins/archive/2006/01/04/509347.aspx

    https://msdn.microsoft.com/en-us/library/system.net.networkinformation.ipglobalproperties.domainname(v=vs.110).aspx?cs-save-lang=1&cs-lang=cpp#code-snippet-2

    Imports System.DirectoryServices
    Imports System.Net.NetworkInformation
    
    Public Class Form1
    
        Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
            Try
                MsgBox("Domain: " & ActiveDirectory.Domain.GetComputerDomain.Name)
            Catch ex As Exception
                MsgBox(ex.GetType.ToString & ": " & ex.Message)
            End Try
        End Sub
    
        Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
            Try
                MsgBox("Domain: " & IPGlobalProperties.GetIPGlobalProperties().DomainName)
            Catch ex As Exception
                MsgBox(ex.GetType.ToString & ": " & ex.Message)
            End Try
        End Sub
    
    End Class
    

提交回复
热议问题