Windows Azure Cloud Storage ermöglicht es Ihnen bereits ab 0,10€ pro GB/Monat die Vorteile der Cloud zu nutzen.
Willkommen bei dotnet-snippets.de! Snippet hinzufügen Login Registrieren
Snippets in der Datenbank: 1550 | Anzahl registrierter User: 1840 | Besucher online: 21
Hauptmenü
Home
Top Ten
Zufälliger Snippet
FAQs
.NET Community
dotnet-forum.de
dotnet-kicks.de
Social

RSS Feeds
Rss Alle Snippets
Rss C#
Rss VB.NET
Rss C++
Rss ASP.NET
Partner
Member of Microsoft Community Leader/Insider Program (CLIP)

Active Directory Klasse


Autor: Rene Muster
Sprache: VB.NET
Bewertung:
noch nicht bewertet
Anzahl der Aufrufe: 11785
  
Kick it on dotnet-kicks.de  

Beschreibung:

In dieser Klasse sind fast alle Funktionen enthalten um Objekte aus dem Active Directory auszulesen.


Abgelegt unter: Active Directory.



Visual Basic
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
Imports System.Collections.Generic
Imports System.DirectoryServices
Imports System.DirectoryServices.ActiveDirectory
Imports System.Security.Permissions
Imports System.ComponentModel
Imports System.Security
Imports System.Text

<DirectoryServicesPermissionAttribute(SecurityAction.LinkDemand, Unrestricted:=True)> _
<DirectoryServicesPermissionAttribute(SecurityAction.InheritanceDemand, Unrestricted:=True)> _
<DirectoryServicesPermissionAttribute(SecurityAction.Assert, Unrestricted:=True)> _
Public Class ActiveDirectory

    Private user As String
    Private pass As String

    Public Enum LogonType As Integer
        LOGON32_LOGON_INTERACTIVE = 2
        LOGON32_LOGON_NETWORK = 3
        LOGON32_LOGON_BATCH = 4
        LOGON32_LOGON_SERVICE = 5
        LOGON32_LOGON_UNLOCK = 7
        LOGON32_LOGON_NETWORK_CLEARTEXT = 8
        LOGON32_LOGON_NEW_CREDENTIALS = 9
    End Enum

    Public Structure __TrustInformation
        Public SourceName As String
        Public TargetName As String
        Public TrustDirection As String
        Public TrustType As String
    End Structure

    Public Structure __Domain
        Public DomainMode As String
        Public TrustRelationships As List(Of __TrustInformation)
    End Structure

    Public Structure __ReplicationOperationInformationFailures
        Public ConsecutiveFailureCount As String
        Public FirstFailureTime As String
        Public LastErrorCode As String
        Public LastErrorMessage As String
        Public SourceServer As String
    End Structure

    Public Structure __ReplicationOperationInformation
        Public CurrentOperation
        Public OperationStartTime
        Public PendingOperations
        Public Failures As List(Of __ReplicationOperationInformationFailures)
    End Structure

    Public Structure __DomainController
        Public CurrentTime As String
        Public DomainName As String
        Public ForestName As String
        Public HighestCommittedUsn As String
        Public InboundConnections As String
        Public IPAddress As String
        Public Name As String
        Public OSVersion As String
        Public OutboundConnections As String
        Public Partitions As String
        Public Roles As String
        Public SiteName As String
        Public SyncFromAllServersCallback As String
        Public IsGlobalCatalog As String
        Public ReplicationOperationInformation As __ReplicationOperationInformation
    End Structure

    Public Structure __Object
        Public Name As String
        Public Description As String
        Public DistinguishedName As String
    End Structure

    Public Structure __Group
        Public Name As String
        Public Description As String
        Public DistinguishedName As String
        Public Members As List(Of __Object)
    End Structure

    Public Property Username() As String
        Get
            Return user
        End Get
        Set(ByVal value As String)
            user = value
        End Set
    End Property

    Public Property Password() As String
        Get
            Return pass
        End Get
        Set(ByVal value As String)
            pass = value
        End Set
    End Property

    Public ReadOnly Property ClassName() As String
        Get
            Return "ActiveDirectory"
        End Get
    End Property

    Private Declare Auto Function LogonUser Lib "advapi32.dll" (ByVal lpszUsername As String, _
                                                                ByVal lpszDomain As String, _
                                                                ByVal lpszPassword As String, _
                                                                ByVal dwLogonType As LogonType, _
                                                                ByVal dwLogonProvider As Integer, _
                                                                ByRef phToken As IntPtr _
                                                            ) As Integer

    Private Declare Auto Function CloseHandle Lib "kernel32.dll" (ByVal hObject As IntPtr) As Boolean

    Public Sub New()
        user = ""
        pass = ""
    End Sub

    Public Sub New(ByVal username As String, ByVal password As String)
        user = username
        pass = password
    End Sub

    Public Function AddDoaminUserToGroup(ByVal LocalSystemName As String, _
                                         ByVal DOMAIN As String, _
                                         ByVal DomainUserName As String, _
                                         ByVal AddToLocalGroup As String _
                                         ) As Boolean

        Try
            Dim LocalSystem As New DirectoryEntry("WinNT://" & LocalSystemName & ",computer")
            Dim DomainName As New DirectoryEntry("WinNT://" & DOMAIN)
            Dim DOMUSR As DirectoryEntry = DomainName.Children.Find(DomainUserName, "user")
            Dim LocalGroup As DirectoryEntry = LocalSystem.Children.Find("Test", "group")
            LocalGroup.Invoke("Add", New Object() {DOMUSR.Path.ToString})
            Return True
        Catch ex As Exception
            Return False
        End Try

    End Function

    ''' <summary>
    ''' Authenticates the user.
    ''' </summary>
    ''' <param name="domain">The domain.</param>
    ''' <param name="username">The username.</param>
    ''' <param name="password">The password.</param>
    ''' <returns></returns>
    Public Shared Function AuthenticateUser(ByVal domain As String, ByVal username As String, ByVal password As String) As Boolean
        Dim pwd As New SecureString()
        Dim bAuth As Boolean = False
        Dim entry As DirectoryEntry = Nothing
        For Each c As Char In password
            pwd.AppendChar(c)
        Next
        pwd.MakeReadOnly()
        Dim pPwd As IntPtr = System.Runtime.InteropServices.Marshal.SecureStringToBSTR(pwd)
        Try
            entry = New DirectoryEntry(String.Concat("LDAP://", domain), username, System.Runtime.InteropServices.Marshal.PtrToStringBSTR(pPwd))
            Dim nativeObject As Object = entry.NativeObject
            bAuth = True
        Catch ex As Exception
            bAuth = False
        Finally
            entry.Close()
            entry.Dispose()
        End Try
        Return bAuth
    End Function

    Public Function UserHasLevels() As String()
        Dim Result As New System.Collections.Generic.List(Of String)
        For Each Value As Integer In System.Enum.GetValues(GetType(Security.Principal.WindowsBuiltInRole))
            If CType(My.User.CurrentPrincipal, Security.Principal.WindowsPrincipal).IsInRole( _
               CType(Value, Security.Principal.WindowsBuiltInRole)) Then
                Result.Add(CType(Value, Security.Principal.WindowsBuiltInRole).ToString())
            End If
        Next
        Return Result.ToArray()
    End Function

    ''' <summary>
    ''' Gets the duplicate keys.
    ''' </summary>
    ''' <param name="property">The property.</param>
    ''' <param name="LoadedDE">The loaded DE.</param>
    ''' <param name="name">The name.</param>
    ''' <param name="domain">The domain.</param>
    ''' <returns></returns>
    Public Function GetDuplicateKeys(ByVal [property] As String, _
                                     Optional ByVal LoadedDE As DirectoryEntry = Nothing, _
                                     Optional ByVal name As String = "", _
                                     Optional ByVal domain As String = "" _
                                     ) As ArrayList

        Dim retval As New ArrayList
        Dim res As DirectoryEntry
        If LoadedDE Is Nothing Then
            Dim r As New DirectoryEntry("LDAP://" + domain + "/", user, pass, AuthenticationTypes.Delegation)
            Dim srv As New DirectorySearcher(r)
            srv.Filter = "(name=" + name + ")"
            res = srv.FindOne.GetDirectoryEntry
        Else
            res = LoadedDE
        End If
        If res IsNot Nothing Then
            If IsArray(res.Properties([property]).Value) Then
                If TypeOf (res.Properties([property]).Value) Is System.Byte() Then
                    Dim proplist() As Byte = res.Properties([property]).Value
                    Dim converted As New StringBuilder
                    For Each tmp As Byte In proplist
                        converted.Append(tmp)
                    Next
                    retval.Add(converted.ToString)
                Else
                    Dim proplist() As Object = res.Properties([property]).Value
                    For Each tmp As String In proplist
                        retval.Add(tmp)
                    Next
                End If
            Else
                retval.Add(Convert.ToString(res.Properties([property]).Value))
            End If
        End If
        Return retval
    End Function

    ''' <summary>
    ''' Gets an Active Directory object.
    ''' </summary>
    ''' <param name="name">The name.</param>
    ''' <param name="domain">The domain.</param>
    ''' <returns></returns>
    Public Function GetObject(ByVal name As String, ByVal domain As String) As SortedList(Of String, ArrayList)
        Dim retval As New SortedList(Of String, ArrayList)
        Dim r As New DirectoryEntry("LDAP://" + domain, user, pass, AuthenticationTypes.Delegation)
        Dim srv As New DirectorySearcher(r)
        srv.Filter = "(name=" + name + ")"
        Dim res As SearchResult = srv.FindOne
        If res IsNot Nothing Then
            Dim resv As DirectoryEntry = res.GetDirectoryEntry
            For Each tmp As String In resv.Properties.PropertyNames
                Dim itemvalue As ArrayList = GetDuplicateKeys(tmp, resv)
                retval.Add(tmp, itemvalue)
            Next
        End If
        Return retval
    End Function

    ''' <summary>
    ''' Gets the directory entry.
    ''' </summary>
    ''' <param name="name">The name.</param>
    ''' <param name="domain">The domain.</param>
    ''' <returns></returns>
    Public Function GetDirectoryEntry(ByVal name As String, ByVal domain As String) As DirectoryEntry
        Dim r As New DirectoryEntry("LDAP://" + domain, user, pass, AuthenticationTypes.Delegation)
        Dim srv As New DirectorySearcher(r)
        srv.Filter = "(name=" + name + ")"
        Dim res As SearchResult = srv.FindOne
        Return res.GetDirectoryEntry
    End Function

    Public Function GetDirectoryEntry(ByVal distinguishedname As String) As DirectoryEntry
        Dim r As New DirectoryEntry(distinguishedname, user, pass, AuthenticationTypes.Delegation)
        Dim srv As New DirectorySearcher(r)
        Dim res As SearchResult = srv.FindOne
        Return res.GetDirectoryEntry
    End Function

    ''' <summary>
    ''' Gets the property value.
    ''' </summary>
    ''' <param name="property">The property.</param>
    ''' <param name="LoadedDE">The loaded DE.</param>
    ''' <param name="objectname">The objectname.</param>
    ''' <param name="domain">The domain.</param>
    ''' <returns></returns>
    Public Function GetPropertyValue(ByVal [property] As String, _
                                     Optional ByVal LoadedDE As DirectoryEntry = Nothing, _
                                     Optional ByVal objectname As String = "", _
                                     Optional ByVal domain As String = "") As ArrayList

        Dim obj As DirectoryEntry
        If LoadedDE Is Nothing Then
            obj = GetDirectoryEntry(objectname, domain)
        Else
            obj = LoadedDE
        End If
        Dim retval As ArrayList = GetDuplicateKeys([property], obj)
        Return retval
    End Function

    ''' <summary>
    ''' Gets the group.
    ''' </summary>
    ''' <param name="GroupDSN">The group DSN.</param>
    ''' <param name="IncludeMembers">if set to <c>true</c> [include members].</param>
    ''' <returns></returns>
    Public Function GetGroup(ByVal GroupDSN As String, Optional ByVal IncludeMembers As Boolean = False) As __Group
        Dim retval As __Group
        Dim r As New DirectoryEntry(GroupDSN, user, pass, AuthenticationTypes.Delegation)
        retval.Name = GetGroupDetails(GroupDSN, r).Name
        retval.Description = GetGroupDetails(GroupDSN, r).Description
        retval.DistinguishedName = GetGroupDetails(GroupDSN, r).DistinguishedName
        Dim g As __Object
        g.DistinguishedName = retval.DistinguishedName
        g.Name = retval.Name
        g.Description = retval.Description
        If IncludeMembers Then
            retval.Members = GetGroupMembers(g)
        Else
            retval.Members = Nothing
        End If
        Return retval
    End Function

    ''' <summary>
    ''' Gets the members.
    ''' </summary>
    ''' <param name="searchpath">The searchpath.</param>
    ''' <returns></returns>
    Public Function GetMembers(ByVal searchpath As String) As List(Of __Object)
        Dim retval As New List(Of __Object)
        Try
            Dim r As New DirectoryEntry(searchpath, user, pass, AuthenticationTypes.Delegation)
            For Each tmp As DirectoryEntry In r.Children
                Dim x As __Object = GetGroupDetails(tmp.Path, tmp)
                retval.Add(x)
            Next
        Catch ex As Exception

        End Try
        Return retval
    End Function

    ''' <summary>
    ''' Gets the group members.
    ''' </summary>
    ''' <param name="Group">The group.</param>
    ''' <returns></returns>
    Public Function GetGroupMembers(ByVal Group As __Object) As List(Of __Object)
        Dim retval As New List(Of __Object)
        Dim start As Integer
        Dim len As Integer
        Dim ende As Integer
        Dim dom As String = ""
        Try
            start = Group.DistinguishedName.IndexOf("/") + 2
            len = Group.DistinguishedName.Length
            ende = Group.DistinguishedName.LastIndexOf("/")
            dom = Group.DistinguishedName.Substring(start, ende - start)
        Catch ex As Exception
            dom = ""
        End Try
        Dim r As New DirectoryEntry(Group.DistinguishedName, user, pass, AuthenticationTypes.Delegation)
        Dim isGroup As Boolean = False
        Dim isOU As Boolean = False
        For Each tmp As String In GetDuplicateKeys("objectClass", r)
            If tmp = "group" Then isGroup = True
            If tmp = "top" Then isOU = True
        Next
        'groups
        If isGroup Then
            For Each tmp As String In r.Properties("member").Value
                If dom = "" Then
                    retval.Add(GetGroupDetails("LDAP://" & dom & "/" & tmp))
                Else
                    retval.Add(GetGroupDetails("LDAP://" & tmp))
                End If
            Next
            'organizational units
        ElseIf isOU Then
            For Each tmp As __Object In GetMembers(Group.DistinguishedName)
                retval.Add(GetGroupDetails(tmp.DistinguishedName))
            Next
        End If
        Return retval
    End Function

    ''' <summary>
    ''' Gets the group details.
    ''' </summary>
    ''' <param name="groupcn">The groupcn.</param>
    ''' <param name="LoadedDE">The loaded DE.</param>
    ''' <returns></returns>
    Public Function GetGroupDetails(ByVal groupcn As String, Optional ByVal LoadedDE As DirectoryEntry = Nothing) As __Object
        Dim retval As __Object
        Dim r As DirectoryEntry
        Try
            If LoadedDE Is Nothing Then
                r = New DirectoryEntry(groupcn, user, pass, AuthenticationTypes.Delegation)
            Else
                r = LoadedDE
            End If
            retval.Name = r.Name.Split("=")(1)
            retval.DistinguishedName = r.Path
            retval.Description = r.Properties("Description").Value
        Catch ex As Exception
            retval.Name = ex.Message
            retval.DistinguishedName = groupcn
            retval.Description = ""
        End Try
        Return retval
    End Function

    'TODO: Rewrite Procedure...
    Public Sub DumpForest(ByVal dmn As String, ByVal tabs As Integer, Optional ByVal getproperties As Boolean = False, Optional ByVal recursiv As Boolean = True, Optional ByVal printpartitions As Boolean = False)
        Dim dc As New DirectoryContext(DirectoryContextType.Domain, dmn)
        Dim fr As Domain = Domain.GetDomain(dc)
        Dim nw As New Net.NetworkInformation.Ping
        Console.Write(Space(tabs) + fr.Name + " (" + fr.Children.Count.ToString + " Childs) " + nw.Send(fr.Name).RoundtripTime.ToString + " ms ping time" + vbNewLine)
        If getproperties Then
            Dim PropertiesToSkip As New List(Of String)
            PropertiesToSkip.Add("uSNCreated")
            PropertiesToSkip.Add("dSASignature")
            PropertiesToSkip.Add("repsTo")
            PropertiesToSkip.Add("repsFrom")
            PropertiesToSkip.Add("uSNChanged")
            PropertiesToSkip.Add("objectGUID")
            PropertiesToSkip.Add("replUpToDateVector")
            PropertiesToSkip.Add("creationTime")
            PropertiesToSkip.Add("forceLogoff")
            PropertiesToSkip.Add("lockoutDuration")
            PropertiesToSkip.Add("lockOutObservationWindow")
            PropertiesToSkip.Add("maxPwdAge")
            PropertiesToSkip.Add("minPwdAge")
            PropertiesToSkip.Add("modifiedCountAtLastProm")
            PropertiesToSkip.Add("objectSid")
            PropertiesToSkip.Add("modifiedCount")
            PropertiesToSkip.Add("auditingPolicy")
            PropertiesToSkip.Add("wellKnownObjects")
            PropertiesToSkip.Add("nTSecurityDescriptor")
            Dim de As DirectoryEntry = fr.GetDirectoryEntry
            For Each tmp As String In de.Properties.PropertyNames
                If Not PropertiesToSkip.Contains(tmp) Then
                    If de.Properties(tmp).Count > 1 Then
                        Console.Write(Space(tabs + 2) + tmp + " : " + vbNewLine)
                        For k As Integer = 0 To de.Properties(tmp).Count - 1
                            Console.Write(Space(tabs + 4) + de.Properties(tmp).Item(k).ToString + vbNewLine)
                        Next
                    Else
                        Console.Write(Space(tabs + 2) + tmp + " : " + de.Properties(tmp).Value.ToString + vbNewLine)
                    End If
                End If
            Next
        End If

        'DC list
        Dim df As DomainControllerCollection = fr.DomainControllers
        Console.WriteLine("Domain Controllers:")
        Console.WriteLine(Space(tabs + 1) + "Name  ;  IPAddress  ;  HighestCommittedUSN  ;  Site  ;  Round Trip Time")
        For Each dg As DomainController In df
            Console.Write(Space(tabs + 1) + dg.Name + " ; " + dg.IPAddress.ToString + " ; " + dg.HighestCommittedUsn.ToString + " ; " + dg.SiteName.ToString + " ; " + nw.Send(dg.Name).RoundtripTime.ToString + " ms" + vbNewLine)
            If printpartitions Then
                Console.WriteLine(Space(tabs + 1) + "Partitions:")
                For Each dh As String In dg.Partitions
                    Console.Write(Space(tabs + 3) + dh.ToString + vbNewLine)
                Next
            End If
        Next

        Console.WriteLine()

        If recursiv Then
            For i As Integer = 0 To fr.Children.Count - 1
                DumpForest(fr.Children(i).Name, tabs + 1, getproperties, recursiv)
            Next
        End If
    End Sub

    ''' <summary>
    ''' Determines whether as client is deactivated
    ''' </summary>
    ''' <param name="userAccountControl">The user account control.</param>
    ''' <returns>
    ''' <c>true</c> if [is client deactivated] [the specified user account control]; otherwise, <c>false</c>.
    ''' </returns>
    Public Function isClientDeactivated(ByVal userAccountControl As String) As Boolean
        Return Right(Hex(userAccountControl), 1) <> 2
    End Function

    Public Function GetAllDomains(ByVal basepath As String) As List(Of String)
        Dim retval As New List(Of String)
        Dim dc As DomainController = Domain.GetDomain(New DirectoryContext(DirectoryContextType.Domain, basepath)).FindDomainController()
        For Each tmp As Domain In dc.Forest.Domains
            retval.Add(tmp.Name)
        Next
        Return retval
    End Function

    ''' <summary>
    ''' Gets the domain information.
    ''' </summary>
    ''' <param name="dc">The dc.</param>
    ''' <returns></returns>
    Public Function GetDomainInformation(ByVal dc As String) As __Domain
        Dim retval As New __Domain
        Try
            Dim context As DirectoryContext = _
                New DirectoryContext(DirectoryContextType.Domain, dc)
            Dim dcinfo As Domain = Domain.GetDomain(context)
            retval.DomainMode = dcinfo.DomainMode.ToString
            retval.TrustRelationships = New List(Of __TrustInformation)
            For Each tmp As TrustRelationshipInformation In dcinfo.GetAllTrustRelationships
                Dim x As __TrustInformation
                x.SourceName = tmp.SourceName.ToString
                x.TargetName = tmp.TargetName.ToString
                x.TrustDirection = tmp.TrustDirection.ToString
                x.TrustType = tmp.TrustType.ToString
                retval.TrustRelationships.Add(x)
            Next
        Catch ex As Exception
            Windows.Forms.MessageBox.Show(ex.ToString)
        End Try
        Return retval
    End Function

    Public Function GetDomainControllerInformation(ByVal domaincontroller As String) As __DomainController
        Dim retval As New __DomainController
        Try
            Dim context As New DirectoryContext(DirectoryContextType.DirectoryServer, domaincontroller)
            Dim dcinfo As DomainController = DirectoryServices.ActiveDirectory.DomainController.GetDomainController(context)
            retval.CurrentTime = dcinfo.CurrentTime
            retval.DomainName = dcinfo.Domain.Name
            retval.ForestName = dcinfo.Forest.Name
            retval.HighestCommittedUsn = dcinfo.HighestCommittedUsn
            retval.IPAddress = dcinfo.IPAddress
            retval.Name = dcinfo.Name
            retval.OSVersion = dcinfo.OSVersion
            retval.SiteName = dcinfo.SiteName
            retval.IsGlobalCatalog = dcinfo.IsGlobalCatalog()
            retval.ReplicationOperationInformation.CurrentOperation = dcinfo.GetReplicationOperationInformation.CurrentOperation
            retval.ReplicationOperationInformation.OperationStartTime = dcinfo.GetReplicationOperationInformation.OperationStartTime
            retval.ReplicationOperationInformation.PendingOperations = dcinfo.GetReplicationOperationInformation.PendingOperations
        Catch ex As Exception
            Windows.Forms.MessageBox.Show(ex.ToString)
        End Try
        Return retval
    End Function

    ''' <summary>
    ''' Gets the computer domain.
    ''' </summary>
    ''' <returns></returns>
    Public Function GetComputerDomain() As String
        Try
            Return Domain.GetComputerDomain.Name
        Catch ex As ActiveDirectoryObjectNotFoundException
            Logger.GetInstance.Log(ClassName)
            Logger.GetInstance.Log(ex.ToString)
            Return "This computer is not part of a domain"
        Catch ex As Exception
            Return Nothing
        End Try
    End Function

End Class

Sie haben Fragen zu diesem Snippet oder brauchen Hilfe bei der .NET Entwicklung?
Freundliche und kompetente Entwickler helfen Ihnen gern weiter im Forum für .NET Entwicklung.



Kommentare:
(Zum Schreiben von Kommentaren bitte anmelden.)

KDB schrieb am:  16.04.2009 12:38:59

Gibt es Beispiele für die übergebenen Parameter?
Habe schon jede Menge Varianten ausprobiert. Bekomme aber keine Ergebnisse oder nur Fehler.
Laufersweiler schrieb am:  24.11.2009 14:48:08

Ein kurzer beispielaufruf jeder Funktion wäre hilfreich.

Ich bekomme z.B. bei dieser Funktion
Function GetDomainControllerInformation
immer eine Exception

Ich nutze sie folgendermaßen:
Dim dc = AD.GetDomainControllerInformation(AD.GetComputerDomain)
dgwDCusers.Item(0, row).Value = dc.DomainName *Zur Anzeige*


schlecht sehr gut
1 2 3 4 5 6 7 8 9 10
Nur angemeldete User können Snippets bewerten.