active questions tagged active-directory - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T08:32:53Z http://stackoverflow.com/feeds/tag/active-directory http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1915134/c-how-do-i-disable-interactive-login-for-a-local-user-account-similar-to-networ 0 C# How do I disable interactive login for a local user account. Similar to Network Service account arri.me 2009-12-16T14:52:56Z 2009-12-17T02:32:54Z <p>I've created a special user account for my applications use, and I need to know how to disable the interactive login feature so that it's only available as a system account. Right now any machine I deploy this application on, the user shows up in the login menu. Any help is appreciated. Is it a setting on the account or a GPO?</p> http://stackoverflow.com/questions/1911315/what-active-directory-field-do-i-use-to-uniquely-identify-a-user 3 What Active Directory field do I use to uniquely identify a user? jcm 2009-12-15T23:49:42Z 2009-12-16T01:26:11Z <p>I have an Asp.net MVC project authenticating through AD. I would like to store audit information in tables for the current logged in user. What should I be storing in the database? I am currently using <a href="http://msdn.microsoft.com/en-us/library/system.directoryservices.accountmanagement.principal.samaccountname.aspx" rel="nofollow">SamAccountName</a> for my membership and role providers. Should I be using this? Should I use the more verbose and modern <a href="http://msdn.microsoft.com/en-us/library/system.directoryservices.accountmanagement.principal.userprincipalname.aspx" rel="nofollow">UserPrincipalName</a>? What if we eventually end up using multiple domains?</p> <p>What about <a href="http://msdn.microsoft.com/en-us/library/system.directoryservices.accountmanagement.principal.guid.aspx" rel="nofollow">Guid</a>? Guid would seem like the obvious choice but I know nothing about it. Why is it nullable? Does this value change? What is it used for?</p> <h2>Update</h2> <p>According to <a href="http://msdn.microsoft.com/en-us/library/system.directoryservices.accountmanagement.principal.samaccountname.aspx" rel="nofollow">SID vs. GUID</a> ...</p> <blockquote> <p>The reason for using SIDs at all, and not GUIDs, is for backward compatibility. Windows NT uses SIDs to identify users and groups in ACLs on resources.</p> </blockquote> <p>SIDs will actually change if you move a user to a new domain, the GUID will remain constant. It looks to me like GUID is the way to go unless you intend to authenticate against a NT4 AD server.</p> <p>I'm not sure what to do here as I cannot accept my own answer for 2 days. Most in-depth explanation wins?</p> http://stackoverflow.com/questions/1904925/directoryservices-accountmanagement-group-membership-checking-efficiency 0 DirectoryServices.AccountManagement - group membership checking efficiency BrianLy 2009-12-15T02:53:36Z 2009-12-15T06:24:17Z <p>We have a group in Active Directory with over 70k user accounts. I need to check whether someone is a member of that group. The code is going to run in a web app with a high volume of concurrent users. I'd prefer to stick to <a href="http://msdn.microsoft.com/en-us/library/system.directoryservices.accountmanagement.aspx" rel="nofollow">System.DirectoryServices.AccountManagement</a> if possible to reduce the amount of code that's written for this app.</p> <p>There appear to be 2 general approaches to checking whether someone is a member:</p> <ol> <li>Use <a href="http://msdn.microsoft.com/en-us/library/system.directoryservices.accountmanagement.userprincipal.ismemberof.aspx" rel="nofollow">UserPrincipal.IsMemberOf()</a> to get a boolean value indicating membership</li> <li>Use <a href="http://msdn.microsoft.com/en-us/library/system.directoryservices.accountmanagement.userprincipal.getgroups.aspx" rel="nofollow">UserPrincipal.GetGroups()</a> to get a list of group memberships that I can manually check</li> </ol> <p>I want to avoid the enumerating 70k users to check whether someone is in a group, so option 2 seems to be more efficient on face value. When I go into work I can do some tests against both methods but I wanted to get some info on what these methods are really doing under the covers. Am I on the right track here in my thinking?</p> <p>One last point about the library I'm using. Can I get better performance if I drop out of System.DirectoryServices.AccountManagement altogether and write my own LDAP queries?</p> http://stackoverflow.com/questions/1569546/asp-net-authentication-against-active-directory-and-roles-via-asp-net-role-provi 1 ASP .NET authentication against Active Directory and Roles via ASP.NET role provider davandries 2009-10-14T23:23:19Z 2009-12-15T00:29:37Z <p>Hello,</p> <p>In my current project, we need to authenticate users of an ASP.NET application against Active Directory. I think it can be achieved using the membership provider without too much problems. but we need also to manage user roles that will be kept in the ASP roles management tool.</p> <p>Did anyone implement this configuration? Does it look feasible? Any tip for one or the other point?</p> <p>Thanks. David</p> http://stackoverflow.com/questions/1394025/active-directory-ldap-check-account-locked-out-password-expired 0 Active Directory (LDAP) - Check account locked out / Password expired Jabezz 2009-09-08T13:25:27Z 2009-12-14T19:42:38Z <p>Currently I authenticate users against some AD using the following code:</p> <pre><code>DirectoryEntry entry = new DirectoryEntry(_path, username, pwd); try { // Bind to the native AdsObject to force authentication. Object obj = entry.NativeObject; DirectorySearcher search = new DirectorySearcher(entry) { Filter = "(sAMAccountName=" + username + ")" }; search.PropertiesToLoad.Add("cn"); SearchResult result = search.FindOne(); if (result == null) { return false; } // Update the new path to the user in the directory _path = result.Path; _filterAttribute = (String)result.Properties["cn"][0]; } catch (Exception ex) { throw new Exception("Error authenticating user. " + ex.Message); } </code></pre> <p>This works perfectly for validating a password against a username.</p> <p>The problem comes in that a generic errors is always returned "Logon failure: unknown user name or bad password." when authentication fails.</p> <p>However authentication might also fail when an account is locked out.</p> <p>How would I know if it is failing because of it being locked out?</p> <p>I've come across articles saying you can use:</p> <pre><code>Convert.ToBoolean(entry.InvokeGet("IsAccountLocked")) </code></pre> <p>or do something like explained <a href="http://en.csharp-online.net/User_Management_with_Active_Directory%E2%80%94Determining_Account_Lockout" rel="nofollow">here</a></p> <p>The problem is, whenever you try to access any property on the DirectoryEntry, the same error would be thrown.</p> <p>Any other suggestion of how to get to the actual reason that authentication failed? (account locked out / password expired / etc.)</p> <p>The AD I connect to might not neccesarily be a windows server.</p> http://stackoverflow.com/questions/1901186/asp-net-mvc-user-authentication-permission 1 asp.net mvc user authentication/permission jj 2009-12-14T14:18:53Z 2009-12-14T15:22:05Z <p>i'm new to asp.net mvc and starting the following project. The company wants an intra-net website for various groups of people to upload files to a database, run reports off the it and amend data in several master tables in the database. The company use Active Directory and do not want the users to log in again to use the web site. The website will have different sections for various groups and the user's access to a particular page should be controlled from a database.</p> <p>So far this is what i've come up with</p> <ol> <li>changed the membership provider to link to the active directory server (<a href="http://helios.ca/2009/05/04/aspnet-mvc-forms-authentication-with-active-directory/" rel="nofollow">based on Mike's blog post</a>)</li> <li>removed AccountController and the Views/Account folder</li> <li>created a custom authentication class based on <a href="http://schotime.net/blog/index.php/2009/02/17/custom-authorization-with-aspnet-mvc/" rel="nofollow">this link</a></li> </ol> <p>I need to pull from a table in the database, based on user's AD id, his "role" (int), then cast it into the relevant SiteRoles. Would implementing this query in CustomAuthorizeAttribute be adviseable? is there a better place to pull the data from the table and store it somewhere so it can be reused rather than having to run a database query every time AuthorizeCore is called (which will happen whenever a user invokes a controller/action)?</p> http://stackoverflow.com/questions/1898830/linq-to-active-directory-for-accessible-files 1 LINQ to Active Directory for accessible files dlb 2009-12-14T03:58:37Z 2009-12-14T06:10:07Z <p>I am new to active directory and I am trying to put together a query that will return list of users and groups who have permissions to read the contents of any accessible file. I can not find any samples that deal with files. So I am at a lost on how to start.</p> http://stackoverflow.com/questions/240388/how-do-i-reload-kerberos-configuration-under-tomcat 1 How do I reload kerberos configuration under tomcat ? Guy 2008-10-27T15:53:46Z 2009-12-14T05:00:02Z <p>My application runs under tomcat. It is using GSS API (JNDI) to connect to Active Directory LDAP Server using Kerberos. It allows the user to define AD servers and try to connect to them. However, once the first Kerberos using connect attempt is done, the application does not read Kerberos configuration again (/etc/krb5.conf). Hence, any change to it requires a restart of tomcat.</p> <p>How can I avoid such a restart ? How can I force the application to reload Kerberos configuration before each connect attempt ?</p> http://stackoverflow.com/questions/1890081/how-to-add-lookup-choice-field-with-data-from-active-directory-to-sharepoint-cust 0 how to add lookup/choice field with data from Active Directory to Sharepoint custom content type Robert Ivanc 2009-12-11T18:44:20Z 2009-12-11T22:52:19Z <p>Hi,</p> <p>I am trying to create a custom content type in Sharepoint where one of the multiple choice fields needs to get data from Active Directory. I've been looking on Google but haven't found any good solutions. Probably I'd have to create a custom field type?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1889010/inherit-active-directory-permissions-via-c 0 Inherit Active Directory permissions via C# Sefyroth 2009-12-11T15:59:09Z 2009-12-11T18:25:09Z <p><strong>Edit:</strong> It seems it doesn't work. Some permissions aren't copied over it seems. This is inside an Active Directory for Exchange 2010. In the screenshot, there's the user "RTCUniversalUserReadOnlyGroup", with the "permission" column empty. Those permissions don't get copied over at all. Any tips?</p> <p>I'm currently having to uncheck the "Include inheritable permissions from this object's parent" checkbox in Active Directory in a programmatic way.</p> <p>EDIT: Had to put the image back in URL form: <a href="http://i47.tinypic.com/2a8fed5.jpg" rel="nofollow">http://i47.tinypic.com/2a8fed5.jpg</a></p> <p>I figured the way to actually uncheck it, but when you do it through the interface, it asks you if you want to copy the current permissions or remove them.</p> <p>Only way I found is to manually list the permissions, put them in a temporary variable and then re-add them after the checkbox was removed.</p> <pre><code> using (DirectoryEntry entry = new DirectoryEntry(myPath)) { List&lt;ActiveDirectoryAccessRule&gt; rules = new List&lt;ActiveDirectoryAccessRule&gt;(); foreach (object ruleObject in entry.ObjectSecurity.GetAccessRules(false, true, typeof(SecurityIdentifier))) { ActiveDirectoryAccessRule rule = ruleObject as ActiveDirectoryAccessRule; if (rule.IsInherited) { rules.Add(rule); } } foreach (object ruleObject in entry.ObjectSecurity.GetAccessRules(false, true, typeof(NTAccount))) { ActiveDirectoryAccessRule rule = ruleObject as ActiveDirectoryAccessRule; if (rule.IsInherited) { rules.Add(rule); } } entry.ObjectSecurity.SetAccessRuleProtection(true, false); foreach (var rule in rules) { entry.ObjectSecurity.AddAccessRule(rule); } entry.CommitChanges(); } </code></pre> <p>I'm wondering if there's a better way to do this and if I'm missing something. It seems to work fine for now, but it feels like a hack that will come bite me in the ass once the project will be deployed.</p> http://stackoverflow.com/questions/1889902/active-directory-and-ntlm-authentication 0 Active Directory and NTLM Authentication Alkersan 2009-12-11T18:14:24Z 2009-12-11T18:14:24Z <p>I<code>m writing an IIS Application, which manages AD users. For this purpose I</code>ve configured site to use Negitiate AuthenticationProvider, and everything works. I wonder, is NTLM suitable for operations with Active Directory (such as creating user accounts)? Or AD accepts only Kerberos authentication?</p> http://stackoverflow.com/questions/1887867/help-required-on-track-active-directory-changes 0 Help Required on track active directory changes Faiasl Iqbal 2009-12-11T12:46:37Z 2009-12-11T17:53:45Z <p>I am going to write a small software to track active directory changes. I need an expert opinion from you. I want to display information about What ( with before and after values), When, Where and Who of any change in AD. I am going to implement this by one of the following way 1. Change Notification Control 2. DirSync Control</p> <p>Both of these method give us the attribute that are changed and we can compare new values with some dump in SQL Server to get old values.</p> <p>My problem is how can I find “Who” has made this change. I have tried but there is no attribute “LastModifiedBy” in active directory. Please give your opinion how can I track who has made this change.</p> <p>--Faisal Iqbal</p> http://stackoverflow.com/questions/1889228/how-to-store-a-users-picture-in-active-directory 3 How to store a users picture in active directory? Jeremy 2009-12-11T16:36:24Z 2009-12-11T17:13:26Z <p>If I want to store users pictures in Active Directory, what format do I use?</p> http://stackoverflow.com/questions/1860772/groupprincipal-members-remove-doesnt-work-with-a-large-ad-group 0 GroupPrincipal.Members.Remove() doesn't work with a large AD group tvanfosson 2009-12-07T15:41:02Z 2009-12-11T15:33:42Z <p>I'm using the <a href="http://msdn.microsoft.com/en-us/library/system.directoryservices.accountmanagement.aspx" rel="nofollow">System.DirectoryServices.AccountManagement</a> namespace classes to manage the membership of several groups. These groups control the population of our print accounting system and some of them are very large. I'm running into a problem removing any user from one of these large groups. I have a test program that illustrates the problem. Note that the group I'm testing is not nested, but user.IsMemberOf() also seems to have the same problem, whereas GetAuthorizationGroups() correctly shows the groups a user is a member of. The group in question has about 81K members, which is more than it should have since Remove() isn't working, and will normally be about 65K or so.</p> <p>I'd be interested to hear from other people who have had this problem and have resolved it. I've got an open case with Microsoft, but the turn around on the call is slow since the call center is about 17 hours time difference so they don't arrive for work until about an hour before I usually leave for home.</p> <pre><code>using (var context = new PrincipalContext( ContextType.Domain )) { using (var group = GroupPrincipal.FindByIdentity( context, groupName )) { using (var user = UserPrincipal.FindByIdentity( context, userName )) { if (user != null) { var isMember = user.GetAuthorizationGroups() .Any( g =&gt; g.DistinguishedName == group.DistinguishedName ); Console.WriteLine( "1: check for membership returns: {0}", isMember ); if (group.Members.Remove( user )) { Console.WriteLine( "user removed successfully" ); group.Save(); } else { // do save in case Remove() is lying to me group.Save(); Console.WriteLine( "user remove failed" ); var isStillMember = user.GetAuthorizationGroups() .Any( g =&gt; g.DistinguishedName == group.DistinguishedName ); Console.WriteLine( "2: check for membership returns: {0}", isStillMember ); } } } } } </code></pre> http://stackoverflow.com/questions/1883165/strange-issue-with-system-directoryservices-accountmanagement-userprincipal-findb 1 Strange issue with System.DirectoryServices.AccountManagement.UserPrincipal.FindByIdentity Nick 2009-12-10T18:50:37Z 2009-12-11T01:25:58Z <p>We're writing a system that allows a user to change their account password through a web application on our intranet. </p> <p>At first, everything appeared to be running smoothly. During development passwords for our test accounts could be changed with no problem.</p> <p>When we made the system live, however, we started running into issues. Here are the symptoms:</p> <ol> <li>At first, everything is fine. Users can change their passwords. </li> <li>At some point, the following error occurs in UserPrincipal.FindByIdentity: "System.Runtime.InteropServices.COMException: The authentication mechanism is unknown. " </li> <li>From then on, trying to change a password through the web application results in the error: "System.Runtime.InteropServices.COMException: The server is not operational. "</li> <li>If I manually recycle the app pool, everything seems to fix itself until more errors begin happening... i.e., the process starts all over again at phase 1.</li> </ol> <p>Here's the relevant snippet of code:</p> <p><hr></p> <pre><code> private static PrincipalContext CreateManagementContext() { return new PrincipalContext( ContextType.Domain, ActiveDirectoryDomain, ActiveDirectoryManagementAccountName, ActiveDirectoryManagementAccountPassword); } private static void ChangeActiveDirectoryPasword(string username, string password) { if (username == null) throw new ArgumentNullException("username"); if (password == null) throw new ArgumentNullException("password"); using (var context = CreateManagementContext()) using (var user = UserPrincipal.FindByIdentity(context, IdentityType.SamAccountName, username)) { user.SetPassword(password); } } </code></pre> <p>Any clues as to why this is happening? Google searches aren't turning up anything really helpful, and neither are the docs on MSDN.</p> http://stackoverflow.com/questions/553293/what-is-the-ldap-filter-string-length-limit-in-active-directory 3 What is the LDAP filter string length limit in Active Directory? Tomalak 2009-02-16T13:25:07Z 2009-12-10T19:09:38Z <p>Can anyone point me to a resource that defines the maximum allowable length of the LDAP filter string in Active Directory?</p> http://stackoverflow.com/questions/1868803/ldap-gettling-a-list-of-logon-names 1 LDAP Gettling a list of logon names Sean p 2009-12-08T18:09:41Z 2009-12-10T17:18:32Z <p>I have the need in my program to get the list of user logon names in a group. </p> <p>This is what I have so far but it only returns all the users...which I need cut down to those in a group, of which i have the name of. </p> <pre><code>Option Explicit On Imports System.DirectoryServices Imports System.DirectoryServices.ActiveDirectory Module Module1 Sub Main() Dim ADEntry As New DirectoryServices.DirectoryEntry("LDAP://OU=Users,OU=Irvine,OU=KNS,DC=corp,DC=kns,DC=com") Dim objSearch As New System.DirectoryServices.DirectorySearcher(ADEntry) Dim oResults As DirectoryServices.SearchResultCollection Dim oResult As DirectoryServices.SearchResult ' THIS DOESNT WORK ' objSearch.Filter = "department = engineering" oResults = objSearch.FindAll For Each oResult In oResults Console.WriteLine(oResult.GetDirectoryEntry.Properties("sAMAccountName").Value) Next End Sub End Module </code></pre> http://stackoverflow.com/questions/1882153/ad-lds-on-windows-7 0 AD LDS on Windows 7 Uffe 2009-12-10T16:18:50Z 2009-12-10T16:23:50Z <p>Is there a way to install AD LDS (<a href="http://msdn.microsoft.com/en-us/library/aa705886%28VS.85%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa705886%28VS.85%29.aspx</a>) on a Windows 7 machine? I can only find references to Windows Server 2008 on the net.</p> http://stackoverflow.com/questions/1878910/asp-net-active-directory-authentication-not-working 0 Asp.net, Active Directory authentication not working Morri 2009-12-10T06:02:26Z 2009-12-10T06:22:51Z <p>I'm having trouble getting AD authentication working on my website. I have the following test code that works fine :</p> <pre><code>DirectoryEntry entry = new DirectoryEntry(srvr, usr, pwd); object nativeObject = entry.NativeObject; </code></pre> <p>On my website I get an error "Your login attempt was not successful. Please try again.". I really haven't been able to figure out what's the underlying error in the process that prevents the login.</p> <p>Here are the sections in my web.config :</p> <pre><code>&lt;authentication mode="Forms"&gt; &lt;forms loginUrl="Default.aspx" timeout="30" name=".ADAuthCookie" path="/" requireSSL="false" slidingExpiration="true" defaultUrl="Edit.aspx" cookieless="UseCookies" enableCrossAppRedirects="false"/&gt; &lt;/authentication&gt; &lt;authorization&gt; &lt;allow users="*"/&gt; &lt;/authorization&gt; &lt;membership defaultProvider="MyADMembershipProvider"&gt; &lt;providers&gt; &lt;add name="MyADMembershipProvider" type="System.Web.Security.ActiveDirectoryMembershipProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" connectionStringName="ADAuthConnection" applicationName="/" connectionProtection="Secure" enableSearchMethods="true" connectionUsername="company\usr" connectionPassword="pwd"/&gt; &lt;/providers&gt; &lt;/membership&gt; </code></pre> <p>Shouldn't this be all that is required? I don't plan to use profile so I haven't configured ProfileProvider, could this cause the problems?</p> <p>Thanks for help!</p> http://stackoverflow.com/questions/1874546/public-active-directory-for-testing 1 Public Active directory for testing. dlb 2009-12-09T15:15:54Z 2009-12-09T22:26:47Z <p>I need to write some .NET code for listing user and groups. I am planing to use LINQ. I do not have access to the Active directory for testing. I do not have a server and can not set up my own Active directory. Are there any public Active directory that I could use for testing. The code is only reading data from the Active directory and not writing any data.</p> http://stackoverflow.com/questions/1876132/active-directory-change-tracking 0 Active Directory Change Tracking Faiasl Iqbal 2009-12-09T19:11:27Z 2009-12-09T19:13:17Z <p>Hi Everyone,</p> <p>I am going to write a small software to track active directory changes. I need an expert opinion from members and also validate my findings from you.</p> <p>What I Need? I want to display information about What ( with before and after values), When, Where and Who of any change in AD.</p> <p>What I Found So Far?</p> <p>I found that there are different alternatives of tracking AD changes, </p> <ol> <li>Reading Audit logs Disadvantage: Dependency on native logging, Difficult to get useful information from event logs</li> <li>Change Notification Control Disadvantage: Performance of Domain Controller, too much information, Limitation of five objects</li> <li>DirSync Control Disadvantage: Can't scope the monitoring ( always monitor complete domain controller), permission issues,</li> <li>uSNChanged attribute Disadvantage: attribute don'tt replicate between domain controller, Complex ( to handle move, deleted, renamed objects)</li> </ol> <p>I also found that for 2,3, and 4 i need to have a secondary storage( a database) and make it synchronize with AD first time, and for each change i need to compare changed object with previously stored object to know what is actually changed ( before and after value).</p> <p>What I want to know from forum members?</p> <ol> <li>Please suggest any solution that would be performance effective and easy to implement in .NET.</li> <li>Please suggest if there is any way to know before and after values without having database. If there is no way please suggest a way to make a clone of AD in SQL Server database.</li> <li>Any helpful hint/tip to get this task done.</li> </ol> <p>I don't need code level details at this time, I just need high level plan so that I proceed further.</p> <p>Please let me know if i didn't clear any thing.</p> <p>and sorry for the long text :( .</p> <p>Thank you -Faisal</p> http://stackoverflow.com/questions/1715194/active-directory-authentication-wcf-service-for-multiple-domains-how 0 Active Directory authentication WCF service for multiple domains - how? Brian Kavanaugh 2009-11-11T13:34:15Z 2009-12-09T12:44:56Z <p>I am working on a WCF service (not externally available) that will authenticate users against Active Directory in two domains for users of our .NET 2.0 WinForm application. The authentication portion is mostly working, but I'm having some problems modifying Active Directory. Here are the basics on the situation and the requirements.</p> <ol> <li>Some external users of our application will log in to a Citrix server on a different domain within our DMZ. That has to be the only time they have to enter their credentials. So, an authenticated user in that domain has to be accepted as already authenticated, and application rights are loaded based on the user ID.</li> <li>There is a one-way trust relationship set up between the DMZ domain and our internal domain.</li> <li>Most external users install the application on their computers. We use .NET remoting to connect to our servers from the app. Authentication is user ID/password via remoting against information stored in SQL Server on our domain.</li> <li>Internal users, while in our domain, will be in a similar situation. They will launch the app and not need to enter any credentials, assuming they are logged in.</li> <li>All users - Active Directory or not - are still set up in our tables, which is where our rights management information is stored. There is a flag on the user table indicating whether the user is AD or not and fields indicating their domain and AD user ID (if different than their original one).</li> <li>If users are set up in Active Directory, either in the external domain or the internal domain, if they run the application installed on a computer not currently on the domain (i.e., from a laptop on the road), they would be authenticated against Active Directory. The remoted objects that handle authentication in #2 connect to the WCF service to get authentication.</li> <li>The same applies to users of our Web site (which uses the same credentials). If they are marked as Active Directory users, they are authenticated against it, not against our normal system.</li> <li>Some internal users that have the correct rights need to be able to set up users in Active Directory, modify them, unlock them and enable/disable them - in the external domain only.</li> </ol> <p>The main questions I have are:</p> <ol> <li>What domain should that WCF service be in: External or Internal?</li> <li>What user should that service be running under to be able to accomplish all of the above, i.e., External\SVC-ADAuthentication, Internal\SVC-ADAuthentication, something else?</li> </ol> <p>From my testing:</p> <ol> <li>When I run the service on External as External\SVC-ADAuthentication, I can modify AD information and authenticate against the External domain. Authentication against the Internal domain fails with "A referral was returned from the server"</li> <li>External as Internal\SVC-ADAuthentication: I can authenticate against both domains, but I cannot modify users on the External domain.</li> <li>Internal as Internal\SVC-ADAuthentication: I can authenticate against the internal domain only.</li> <li>Internal as External\SVC-ADAuthentication: Won't run (I'm assuming because of the one-way trust relationship).</li> </ol> http://stackoverflow.com/questions/1031619/wcf-service-with-active-directory-authentication 0 WCF Service with Active Directory Authentication Ted 2009-06-23T09:52:17Z 2009-12-09T12:23:36Z <p>I am writing a WCF Service which would allow access to operations based on AD user group. If the logged in user is part of <code>groupA</code>, allow him to do <code>operationA</code>, but not <code>operationB</code> and so on and so forth. Now for this I have to pass <code>NetworkCredentials</code> to the service like</p> <pre><code>factory.Credentials.Windows.AllowedImpersonationLevel = TokenImpersonationLevel.Identification; factory.Credentials.Windows.AllowNtlm = true; factory.Credentials.Windows.ClientCredential.username = "username"; factory.Credentials.Windows.ClientCredential.password = "pwd"; factory.Credentials.Windows.ClientCredential.domain = "mycompany.com"; </code></pre> <p>I want that the user need not enter his credentials for calling service operation. It should take from <code>Thread.CurrentPrincipal</code>. Can anyone help me out in this regards as to how to pass network credentials.</p> http://stackoverflow.com/questions/786077/import-and-exporting-users-from-an-active-directory 1 Import and Exporting users from an Active Directory Everett 2009-04-24T14:27:12Z 2009-12-09T12:09:08Z <p>I'm trying to move a SharePoint site from one server to another. I'm supposed to move all the users with their permissions as well. I've been told that the best way to do that is to export the users from the AD and then import the list on the target server.</p> <p>Is this the best way to accomplish this? How do I export only the users and permissions and then import them?</p> http://stackoverflow.com/questions/161398/finding-a-user-in-active-directory-with-the-login-name 2 Finding a User in Active Directory with the Login Name Michael Stum 2008-10-02T08:46:09Z 2009-12-09T12:04:28Z <p>I'm possibly just stupid, but I'm trying to find a user in Active Directory from C#, using the Login name ("domain\user").</p> <p>My "Skeleton" AD Search Functionality looks like this usually:</p> <pre><code>de = new DirectoryEntry(string.Format("LDAP://{0}", ADSearchBase), null, null, AuthenticationTypes.Secure); ds = new DirectorySearcher(de); ds.SearchScope = SearchScope.Subtree; ds.PropertiesToLoad.Add("directReports"); ds.PageSize = 10; ds.ServerPageTimeLimit = TimeSpan.FromSeconds(2); SearchResult sr = ds.FindOne(); </code></pre> <p>Now, that works if I have the full DN of the user (ADSearchBase usually points to the "Our Users" OU in Active Directory), but I simply have no idea how to look for a user based on the "domain\user" syntax.</p> <p>Any Pointers?</p> http://stackoverflow.com/questions/1413002/return-ou-in-active-directory-search 0 Return OU in active directory search Jeremy 2009-09-11T20:05:06Z 2009-12-09T11:58:35Z <p>I have performed an active directory search and now have a SearchResultCollection of all the users in active directory. I've specified all the properties that the DirectorySearch should load, but I also want to know what OU (distinguished name) each user is in. I know I could figure it out be getting a DirectoryEntry for each user, and look at the distinguished name of the directory entries parent directory entry, but this seems like it would be terribly slow. Is it possible to return the ou distinguished name some other way?</p> http://stackoverflow.com/questions/833835/active-directory 2 Active Directory Loganathan 2009-05-07T10:13:37Z 2009-12-09T11:55:32Z <p>How can i get the password for a user from Active Directory</p> http://stackoverflow.com/questions/810034/search-active-directory-in-webapp-for-multiple-users 0 Search Active Directory in WebApp for multiple users davidsleeps 2009-05-01T03:12:29Z 2009-12-09T11:49:21Z <p>a web application I work with requires a form which allows an Administrator to add users into the web applications user table. The web application is intranet based and is run in a number of countries world wide.</p> <p>They need the ability to search Active Directory to find users to add from across multiple domains. Searching domains that are geographically located further away takes much longer than searching closer domains...</p> <p>Is there faster ways to search Active Directory, e.g. certain search parameters or eliminating fields to search?</p> <p>and how would you populate say a session dataset and have a grid or other control refresh to retrieve the data as it is retrieved from each domain...i'm not sure how you could do this as it sounds multi-threaded which i haven't done in an asp.net webapp...</p> <p>thanks heaps!</p> http://stackoverflow.com/questions/981621/finding-a-users-manager-record-in-active-directory 0 Finding a user's manager record in Active Directory Chadworthington 2009-06-11T14:57:49Z 2009-12-09T11:44:45Z <p>Using Active Directory, am trying to find the SamAccountName and email of the user’s manager.</p> <p>I find the logged on user in the AD by search where sAMAccountName = Domain\Account. I then retrieve the manager property, which looks like this, for example:</p> <p>"CN=Doe\, Jane E.,OU=Employees,OU=Users,OU=Detroit,OU=United States,DC=na,DC=gmc,DC=gmc,DC=com"</p> <p>How can I use this presumed key to find the user record for this person? What field would I match on?</p> http://stackoverflow.com/questions/1747856/c-error-while-accessing-active-directory 1 C# : Error while accessing Active Directory Mohsan 2009-11-17T10:16:06Z 2009-12-09T11:24:26Z <p>hi. i am facing some problems in accessing Active Directory from my winform app. what I want is to create a user and query user from Active Directory.</p> <p>here is code snippet for find user</p> <pre><code> public bool FindUser(string username) { using (PrincipalContext context = new PrincipalContext(ContextType.Domain, this.domainName, this.DomainUserName, this.DomainPassword)) { UserPrincipal user = UserPrincipal.FindByIdentity(context, username); return (user != null) ? true : false; } } </code></pre> <p>i am unable to create object of PrincipalContext based on given arguments. i am getting this exception "{"The server could not be contacted."}"</p> <p>and inner exception states that "{"The LDAP server is unavailable."}"</p> <p>where as domain is running. i can ping to it and can also connect to this domain.</p> <p>any suggestion about these exceptions?</p>