Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #55.0K
~4K People Reached
Favorite Forums

3 Posted Topics

Member Avatar for AlBars

Try this: [CODE]Dim GroupSearcher As New DirectorySearcher 'Change the OU path, domain and domain admin details Dim GroupSearchRoot As New DirectoryEntry("LDAP://OU=YourGroupsOU,DC=yourdomainname,DC=com", "Your_Domain_Admin", "Admin_Password") With GroupSearcher .SearchRoot = GroupSearchRoot .Filter = "(&(ObjectClass=Group)(CN=YourGroupName))" '<<< Change the Group name here End With Dim Members As Object = GroupSearcher.FindOne.GetDirectoryEntry.Invoke("Members", Nothing) '<<< Get members For …

Member Avatar for paulreg
0
2K
Member Avatar for noamwegner

I've worked on this code [CODE]''' <param name="de">DirectoryEntry to use</param> ''' <param name="pName">Property name to set</param> ''' <param name="pValue">Value of property to set</param> Public Shared Sub SetADProperty(ByVal de As DirectoryEntry, _ ByVal pName As String, ByVal pValue As String) 'First make sure the property value isnt "nothing" If Not pValue …

Member Avatar for piyush.agrawal
0
250
Member Avatar for delcatto

here is a link for more information...... [url]http://www.techrepublic.com/blog/networking/simplify-admin-tasks-by-exporting-active-directory-data-with-csvde/427[/url] Piyush

Member Avatar for piyush.agrawal
0
2K

The End.