Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
4answers
1k views

How can I get the local group name for guests/administrators?

Question: I use the code found at http://support.microsoft.com/kb/306273 to add a windows user. The problem is i need to add the user to a group, but the groupnames are localized. E.g. the ...
5
votes
4answers
2k views

How to register System.DirectoryServices for use in SQL CLR User Functions?

I am porting an old 32-bit COM component that was written in VB6 for the purpose of reading and writing to an Active Directory server. The new solution will be in C# and will use SQL CLR user ...
4
votes
1answer
933 views

Extending UserPrincipal; FindByIdentity() fails

Extending UserPrincipal to take advantage of its built-in properties... running into an issue when we overload the FindByIdentity() method. From Microsoft's example at ...
3
votes
2answers
664 views

How to determine all the groups a user belogns to (including nested groups) in ActiveDirectory and .NET 3.5

I have an application that uses ActiveDirecotry authorisation and it has been decided that it needs to support nested AD groups, e.g.: MAIN_AD_GROUP | |-> SUB_GROUP | ...
3
votes
1answer
1k views

Error with UserPrincipal.GetAuthorizationGroups() method

I am having an issue using the GetAuthorizationGroups method of the UserPrincipal class in a web application. Using the following code, I am receiving "While trying to retrieve the authorization ...
2
votes
1answer
491 views

Multiple Active Directory look-ups in MVC3 application

My MVC application allows a subset of users to insert/edit records in a table, and since I'm using Windows authentication I get their samaccountnames "for free" and can insert these in a "Last Updated ...
2
votes
1answer
990 views

System.DirectoryServices.AccountManagement.PrincipalContext and Impersonation in a WCF service

Working with the PrincipalContext in code that lies behind a WCF service. The WCF service is impersonating, to allow a 'pass-through' type authentication. While everything else I do with Active ...
2
votes
1answer
153 views

PermissiveModifyControl throws DirectoryOperationException in C# LDAP

Using the System.DirectoryServices.Protocols namespace to add/modify attributes on an Active Directory group. Code: public void UpdateProperties(Dictionary<string, string> Properties) { ...
2
votes
2answers
981 views

System.DirectoryServices is slow?

I'm using the code below to look up information in active directory when a user logs on to a website. Running against a local domain it's very quick, but running over a VPN to a remote trusted domain, ...
1
vote
5answers
194 views

Dispose not working as expected in DirectorySearcher

I am trying to connect and do simple functionalities such as search on an Active Directory using C#. However, I am stuck in a problem. I am using DirectorySearcher to search the directory. There are ...
1
vote
1answer
123 views

How to access a Novell network through System.DirectoryServices?

I'm accessing an ActiveDirectory through public static DirectoryEntry GetRootDSE() { DirectoryEntry rootDSE = new DirectoryEntry("LDAP://rootDSE"); return rootDSE; } ...
1
vote
0answers
1k views

“An operations error occurred” from DirectoryServices

I'm trying to use System.DirectoryServices to query an Active Directory server, using LDAP. My code can (apparently) connect and authenticate, but when my first DirectorySearcher FindAll() method is ...
1
vote
1answer
113 views

Does anyone know a good practice to use when developing for the system.directory services class?

I'm trying to create a data access later using System.DirectoryServices. I'd like to use the MVC 2 framework and have all my views be mostly strongly-typed. Does anyone know any good way to this? ...
1
vote
0answers
259 views

Extensibility Model - Extending UserPrincipal

My code: var context = new PrincipalContext( ContextType.Domain, "domain controller", "ou=foo,dc=bar,dc=com"); var userSearcher = new PrincipalSearcher(new ActiveDirectoryUserPrincipal(context)); ...
1
vote
2answers
54 views

Which authentication protocol?

In the System.DirectoryServices namespace, when using the "Secure" value for the AuthenticationTypes enumeration while instantiating a DirectoryEntry, what authentication protocol is being used? The ...
1
vote
1answer
264 views

Iterating the members of a large group in active directory

I need to iterate the members of a group using the System.DirectoryServices classes. The problem I am seeing is that after I obtain the DirectoryEntry for the group, the "members" property only ...
1
vote
3answers
563 views

Check if a user is already logged into domain with System.DirectoryServices.AccountManagemen

C# or VB.NET suggestion is welcome. I have computers joined to a domain. I'm writing a desktop application that ask for a username and password to authenticate user against Active Directory. ...
1
vote
1answer
200 views

Connection pooling in System.DirectoryServices.Protocols (S.DS.P)

I'm struggling with System.DirectoryServices.Protocols (S.DS.P) in an ASP.NET Helpdesk application to manage users and security groups. I want to implement connection pooling for my LDAP ...
1
vote
4answers
2k views

Can't query AD (get a DirectoryServicesCOMException)

I'm attempting to query AD in an ASP.Net (4.0) application that is running on Windows Server 2008 R2 (IIS7 installed). (It also fails when running as a 2.0 application as well) This is nothing new ...
1
vote
3answers
412 views

How do I set the ManagedBy property on a GroupPrincipal

I'm creating and updating Groups in Active Directory using the GroupPrincipal class in System.DirectoryServices.AccountManagement. When creating and updating, I also need to be able to set the ...
1
vote
1answer
2k views

List local administrators with System.DirectoryServices.AccountManagement doesn't retrieve domain users

I'm trying to remotely list members of the local Administrators group. The following code returns only local accounts which are members of the admin group - no domain groups or individual accounts are ...
1
vote
2answers
1k views

Given a user's SID, how do I get their userPrincipalName?

I have a list of user's security identifiers and I need to get a list of userPrincipalName's... is there any way that I can get it without loading up the users DirectoryEntry and pulling in the ...
1
vote
4answers
1k views

Adding User to AD Security Group fails after user creation

I am using a WCF service to expose certain Active Directory management functions to our help desk staff without giving them the group membership required to manipulate AD directly. Adding users to and ...
0
votes
1answer
109 views

Looking for a Full S.DS.AM Sample with many AD extensions already written

System.DirectoryServices.AccountManagement can be extended to support additional properties for reading and writing AD properties. Is anyone aware of a full/complete sample implementation that works ...
0
votes
1answer
127 views

Working with Permission Attribute

I'm probably just getting the concept wrong, but still i thought I should ask: I'm trying to find the specific permissions needed to create a new local user group in Win2008. I went over the ...
0
votes
2answers
105 views

Checking group membership

I'm using UserPrincipal.FindByIdentity(ctx, "SomeAdminAccountName").GetGroups() to authorize a user against a group in active directory. It works fine for simple groups, but not for nested groups. ...
0
votes
0answers
46 views

Attribute count incorrectly zero (SearchResultEntry)

I have got a System.DirectoryServices.Protocols.SearchResultEntry object from a query of an Active Directory server representing one person in our Active Directory. I am iterating around all of the ...
0
votes
1answer
201 views

How do i get a list of all users, passwords and groups from an activeDirectory using System.DirectoryServices?

I need to get a list of all users, passwords and groups from an activeDirectory. I use System.DirectoryServices. How do I do this? edit: How do I get all groups a specific user belongs too?
0
votes
1answer
136 views

System.DirectoryServices.AccountManagement bootstrapping myself

I'm trying to bootstrap myself up on the System.DirectoryServices.AccountManagement namespace in order to solve another issue I'm having. In net i want to toggle the "ChangePasswordOnNextLogon" flag ...
0
votes
1answer
148 views

Setting DirectoryEntry.Username resets Properties

I'm currently doing some work on a set of classes to manage our Active Directory. In one class for example I add a property to a DirectoryEntry object. According to the value of ...
0
votes
1answer
207 views

How can I retain connection credentials across calls in System.DirectoryServices?

I am trying to connect to an Active Directory domain (W2K8R2 DC) in a different forest. To that end, I pass the credentials into the following DirectoryEntry constructor: DirectoryEntry(string path, ...
0
votes
2answers
570 views

Forms Authentication against Active Directory - LDAP Protocol

I need to create a web page that authenticates users against an existing active directory. The domain is actually a cloud computing configuration where there is a domain controller and multiple other ...
0
votes
2answers
219 views

PowerShell, Exchange 2010 Adressbook

It is possible to access Exchange 2010 Adressbook from a PowerShell Script which is running on a client? I want to access the adressbook, search by properties and work with the results. I have not ...
0
votes
1answer
278 views

Does .NET DirectoryServices support LDAP-S (LDAP over SSL)?

Does .NET DirectoryServices support LDAP-S (LDAP over SSL)? More generally, what authentication or encryption methods are supported? I've used the .NET System.DirectoryServices class in a project, ...
0
votes
0answers
27 views

Cannot use DirectoryServices

I'm using Directory Services to manipulate IIS. Problem is that we have a single machine that, for some reason, doesn't let me use it. It basically gets stuck wherever I call it (not throwing ...
0
votes
1answer
710 views

Unlock Active-Directory Account using Systems.directoryservices.AccountManagement in c#

I'm experiencing some problems when unlocking a locked account on AD. I'll keep it very simple. I'm assuming that the account is currently locked. UserPrincipal oUserPrincipal = ...
0
votes
3answers
143 views

Cannot specify which attributes to return when querying an LDAP store

I am using the DirectoryServices.Protocols.SearchRequest type to make a request against an OpenDS store to retrieve some entries. I want to be able to control which attributes are returned for the ...
0
votes
1answer
255 views

Trouble Shooting Help: Active Directory Bind Fails

I'm trying to diagnose a problem with a server application running on a Client site. Said application authenticates user credentials against a Domain Controller in an AD environment. The behavior ...
0
votes
2answers
162 views

Does a System.DirectoryServices.AccountManagement.Principal ever have a null GUID?

I have a situation where I need to store a globally unique identifier that points to an Active Directory user account. I'm leaning towards the Guid because it is easier to store than the Sid. ...
0
votes
1answer
655 views

How do I get DirectorySearcher to honor my specified SearchScope?

I have the following C# code in a project: DirectoryEntry root = new DirectoryEntry(@"LDAP://ad.mydomain.com"); DirectorySearcher ds = new DirectorySearcher(root); ds.DerefAlias = ...
-2
votes
1answer
329 views

Insert class instance in a List to SQL database

What is the best way to insert a List of class instances in SQL 2008 R2 table? I am using C# in a CLR Procedure to get and insert the data. I am trying to insert information of computer objects ...