0
votes
3answers
28 views
asp.net iis metabase doesn’t return all sites
Hi,
I use code like the following in ASP.Net to enumerate the websites in IIS:
string metabasePath = "IIS://localhost/W3SVC";
DirectoryEntry service = new DirectoryEntry(metabase …
1
vote
1answer
60 views
Error 0x80005000 and DirectoryServices
I'm trying to run a simple LDAP query using directory services in .Net.
DirectoryEntry directoryEntry = new DirectoryEntry("LDAP://someserver.contoso.com/DC=contoso,DC=com");
…
1
vote
2answers
221 views
“The specified domain either does not exist or could not be contacted”
I'm trying to use Integrated Windows Authentication combined with a DirectorySearcher to identify and authenticate the intranet user.
I'd managed to get some fairly simple code th …
1
vote
2answers
140 views
Does System.DirectoryServices.DirectoryEntry contain a constructor that actually uses “domain\username” with Ldap?
Microsoft has a general purpose KB article (Q316748) describing how to authenticate against Active Directory using the DirectoryEntry object. In their example they produce a userna …
0
votes
1answer
43 views
AD group name with ‘/’ character is blowing up my binding
I get the memberOf property for my user using this code:
DirectorySearcher search = new DirectorySearcher(new DirectoryEntry(connectionString));
search.Filter=string.Format("(& …
0
votes
2answers
101 views
How to change passwords using System.DirectoryServices.Protocols
Our user store is an LDAP server called eDirectory. How do you change user passwords using System.DirectoryServices.Protocols?
2
votes
3answers
290 views
How to programaticly change Active Directory password.
I have a set of test accounts that are going to be created but the accounts will be setup to require password change on the first login. I want to write a program in C# to go thro …
1
vote
3answers
380 views
Connecting to LDAP from C# using DirectoryServices.
Hi,
I am trying to connect to an edirectory 8.8 server running LDAP. How would I go about doing that in .Net? Can I still use the classes in System.DirectoryService such as Direc …
1
vote
8answers
2k views
“Access Denied” when trying to connect to remote IIS server - C#
I receive an "Access Deined" COMException when I try to connect to a remote IIS 6 server from my C# application that is running under IIS 5.1.
Any ideas? I am experiencing all th …
1
vote
1answer
105 views
System.DirectoryServices pegs my processor when multi-threaded - can I lower the burden?
My application takes the currently logged-in user and uses an a DirectoryServices.DirectorySearcher to pull a few additional detail about them (some properties we have stored in a …
0
votes
3answers
80 views
Guidelines to follow when making your program Active Directory/Terminal Services compatible
Wondering if there's any guidelines that should be followed when writing an application that should work not only on a plain ol' non-networked computer but also on a computer/netwo …
1
vote
1answer
408 views
System.DirectoryServices.AccountManagement in .net 2.0
Is there a:
string name =
System.DirectoryServices.AccountManagement.UserPrincipal.Current.DisplayName;
equivalence in .net 2.0 framework?
It uses the System.DirectoryServi …
4
votes
5answers
335 views
Why would this catch all block not in fact catch all
The code is fairly simple --- the issue is that there is an invalid character in the groupPath string (a '/' to be exact).
What I'm trying to do (at least as a stop gap) is skip o …
0
votes
2answers
160 views
is DirectorySearcher.SizeLimit = 1 for FindAll() equal to FindOne() [DirectoryServices/.net]
When using the DirectorySearcher in .net, are these two statements equal?
Same for both:
Dim ds As New DirectorySearcher
' code to setup the searcher
First statement
ds.FindOn …
0
votes
2answers
216 views
Does SearchResultCollection’s GetDirectoryEntry have to query ActiveDirectory again? [DirectoryServices/.net]
When using the FindAll() method of the DirectorySearcher in .net, does the GetDirectoryEntry() method of the SearchResultCollection require another trip to Active Directory? e.g... …
