0
votes
0answers
10 views
Enumerate Windows user group members on remote system using vb.net
I am trying to do the same thing in vb.net as the op in this post
see below
but I would like to do it using System.directoryservices method just like he mentioned later in the post.
i don't see why …
0
votes
3answers
75 views
Creating folders using DirectoryEntry
I am writing an ASP.NET (C#) application to create users for my domain. It also has to create folders and shares on a separate file server. I have so far been able to accomplish my task using
…
0
votes
1answer
218 views
Work with DirectoryEntry not on a Domain, set user password never expire
Hello i try to put the user password check to never expire. When i create the user, the check is always uncheck. I try many twist to execute that but noting work.
There is my code.
DirectoryEntry …
0
votes
3answers
375 views
C# DirectoryEntry Error?
I have a Web setup project. In the setup I have an input field where the user can insert a connectionstring. When I run the setup I get this error:
Error 1001. Unknown error (0x8000x5000)
To track …
2
votes
2answers
261 views
How to change System.DirectoryEntry “uSNChanged” attribute value to an Int64
I'm trying to get the Int64 value of a Directory Services object's "uSNChanged" value. Unfortunately, it is always coming back as a COM object of some kind. I've tried using casting to Int64, calling …
0
votes
4answers
324 views
Problem getting Users from ActiveDirectory [C# in ASP.NET]
Cannot get the user list from ACtiveDirectory Services when accessed from another system in the same network.
If accessed from where the code is, then we can obtain the userlist, but cannot get it …
1
vote
2answers
270 views
How to know if my DirectoryEntry is really connected to my LDAP directory ?
I'm connecting to a LDAP directory in C#, so I've used the DirectoryEntry class.
When you do the "new DirectoryEntry" with address, login, and password it is supposed to connect to the LDAP …
1
vote
0answers
373 views
The user credentials supplied to the DirectoryEntry constructor are being ignored. What am I doing wrong
Hi.
I have a really simple piece of code that creates a DirectoryEntry object which is attached to a w3svc object on a remote server. The C# code I have is as follows (NOTE: The code runs inside a …
1
vote
0answers
135 views
IIS website size using DirectoryEntry
Hello,
I am using the following code to loop through my websites in IIS:
DirectoryEntry root = new DirectoryEntry("IIS://localhost/W3SVC");
foreach (DirectoryEntry directory in root.Children)
{
…
3
votes
5answers
1k views
Best way to quickly determine whether a user account is a member of an AD group?
I currently have some code that pulls down a list of users in a group and then iterates through that group to determine if a given account exists, but it seems like there ought to be a more concise …
0
votes
1answer
643 views
“new DirectoryEntry(distinguishedName as string)” doesn’t work when DN contains a “/”
I have the following code to convert a distinguishedName to a sAMAccountName:
Dim de As New DirectoryEntry("LDAP://" & stringDN)
Return CType(de.Properties("samaccountname")(0), String)
It …
0
votes
1answer
1k views
Reading ldap group member from c#
Hi
I have this code to connect to Active Directory and get all the groups that exist, it works and returns all the groups in results :
DirectoryEntry dirEnt = new DirectoryEntry();
using …
-1
votes
2answers
258 views
From where the DirectoryEntry class of c# fetches data?
help me
Regards
Arun
