Active Directory (AD) is a directory service created by Microsoft. It stores all information and settings for a deployment in a central database. AD allows administrators to assign policies, deploy and update software. AD networks can vary from a small installation with a few computers, users and ...
1
vote
1answer
7 views
PowerShell script to return members of multiple security groups
I need to return all members of multiple security groups using PowerShell. Handily, all of the groups start with the same letters.
I can return a list of all the relevant security groups using the ...
1
vote
0answers
15 views
Linux integration into Active Directory (Cross domain)
I am trying to test a solution of integrating my Debian 6 Squeeze machine in an Active Directory domain.
I dit it with libnss-ldap.conf & ldap.conf
Now, I want to authenticate other users from ...
0
votes
0answers
9 views
GUID based RoleProvider for MVC4
I working on a MVC4 intranet application. It uses Active Directory as MembershipProvider.
But I have implemented my own RoleProvider. Its working fine.
But all role lookup methods are username ...
0
votes
0answers
9 views
Getting deleted users by lastknownparent in windows active directory using c#
I am trying to retrieve all the deleted users those are deleted from a particular OU. I am using the below query and it works fine.
string query = ...
0
votes
0answers
19 views
LDAP's ldap_search_s() fails on Windows Active Directory
I have setup an Active Directory service on my Windows 2008 server.
I have added an user and here is the DN (DistingushedName) CN=ashwin,CN=Users,DC=test,DC=com
There is no password set for the DN ...
1
vote
1answer
19 views
Microsoft Exchange: How To Resolve A Distinguished Name
How can i resolve this:
/O=CHEESE/OU=FIRST ADMINISTRATIVE GROUP/CN=RECIPIENTS/CN=LHALA1
to an email address? Do i have to use Exchange Web Services?
1
vote
2answers
28 views
Automatically create symlinks with lowercase names from uppercase directories
Thanks for considering to help.
I am attempting to create a simple shell script that once ran will look at all the directories of a folder that are typically in uppercase form and will create a ...
0
votes
1answer
25 views
Redirect to Azure Active Directory by clicking Login button in an MVC 4 App
I had never dealt with Active Directory, much less Azure Active Directory before, plus my understanding of how web security works is extremely shaky. So, please, be gentle no matter how stupid I sound ...
0
votes
1answer
16 views
Cant search users in LDAP with name containing *
My problem is that i cant search for users when their name contains *. The search string i used is just *.
I have read in:
http://msdn.microsoft.com/en-us/library/aa746475%28VS.85%29.aspx
that if ...
0
votes
0answers
10 views
connect to AD with alternate credential​s and build outlook signature
I am trying to pass alternate AD credentials in a script and display user attributes (ie displayname, department, title).
I want to prompt for a username and password and then I want the script to ...
0
votes
1answer
9 views
Using tomcat server to query multiple Active Directories
I have a webapp deployed on tomcat server , I am using LDAP for authentication and connect to a local AD server.
No i have a requirement where there are multiple users who have to access the same ...
0
votes
1answer
21 views
Powerhsell - ad extract and filter the result
I folks,
I'm looking for and ad extract but I'm not getting the restult I want in the extracted file.
I'm running this powershell command, if I remove the "select-string" switch I get what I want:
...
2
votes
1answer
38 views
ASP.NET - Accessing Active Directory from code behind page
I have made a web application, which reads/writes from/to Active Directory. In my web.config file there is
<identity impersonate="true"/>
and
<authentication mode="Windows"/>
When I ...
0
votes
2answers
38 views
Get a list of users in nested active directory groups
I have a structure of groups (one main group with sub-groups) in active directory.
How can I get the list of all members (users) of all the groups using the main group DN?
I found many examples for ...
2
votes
0answers
50 views
Disabling SSL Certificate Validation for Active Directory server using spring-ldap 1.3.1
I'm able to authenticate to Active Directory if there is need to configure only one AD server. The solution is given as
Active Directory authentication through ssl as anonymous user by me.
Now I'm ...
0
votes
1answer
21 views
LDP user search filter not shsowing all users
Im trying to serach all users in a specific group in Active directory using LDAP. but not all the users from the group is not showing in the result.
but if i specifically serach sam account name, i ...
1
vote
1answer
17 views
How can I use one Windows account for ASP.Net impersonation, and a different windows account for a Sql Server trusted connection in the same app?
I have an ASP NET web app that uses identity impersonation. However, there is an SQL connection string that I must use with SQL Server to retrieve data that relies on a Trusted Connection. Is there ...
0
votes
3answers
34 views
Undesired Newlines in Output from AD Search
I am having an issue with the out put; I wanted a second look to see another way of getting my output to not have return or new lines in it.
Could someone take a look for me please?
$objDomain = ...
0
votes
1answer
26 views
Centrify for Apache - silent authentication, works in Chrome but not IE8, get a login box
We are trying to setup single sign on / silent authentication via Apache 2.2.21 RHEL5.
Using Chrome, it works fine - accesses web pages, no login box, but AD user credentials are available.
Using ...
0
votes
1answer
16 views
DirectoryServicesCOMException (0x80072020) when using Active Directory from ASP.NET application
Introduction
I'm maintaining a legacy ASP.NET 3.5 application that queries Active Directory. The application uses "Integrated Windows Authentication" and is designed to connect to Active Directory ...
0
votes
0answers
16 views
Synchronising AD with SQL
I'm currently writing a small agent which will retrieve a DataTable in C# of all current people in the database.
I need to include some logic which traverses this DataTable and checks if each user ...
1
vote
1answer
37 views
Optimize AD search - get group members
Is it possible to query only those members of group, which is also group from AD?
Now I am using following code:
var group = GroupPrincipal.FindByIdentity(ctx, identityType, domainGroup);
if (null ...
0
votes
0answers
9 views
Any way to log active directory failed login password hashes?
I'm looking for a way to get insight into failed active directory login attempts - specifically username and password hash (don't care about actual password, and don't care about seeing successful ...
0
votes
0answers
32 views
WebDAV directory ignores security settings only when it has a certain name
I'm trying to configure WebDAV on a Windows Server 2012. It'll be used by about 30-40 people, each belonging to specific groups (IT, Sales, etc.). I've set all this up as Active Directory users and ...
1
vote
2answers
43 views
Active Directory authentication through ssl as anonymous user
I'm able to authenticate Active Directory with a user configured for ContextSource lifetime using Spring-ldap. My Spring xml configuration looks lilke this:
<bean id="ldapTemplate" ...
0
votes
2answers
38 views
MVC 4 authentication with Activ Directory or Membership database
I´m building a web application which could get accessed on two ways. Everyone who is working in the same organisation as I should can use our active directory to access the application.
Everyone ...
0
votes
0answers
18 views
How to read domain user info in ASP.NET application across domains?
I am using this code, to read users first name and last name from active directory. Work well, until user is in different (but trusted) domain. Then it returns null. User is authenticated well.
using ...
0
votes
0answers
13 views
Can I force SQL Server 2008R2 to default maintenance plan ownership to a local SQL Server account rather than my AD account?
Greetings fellow code monkeys,
I'm currently an accidental DBA on a SQL Server 2008R2 install (17+ years development experience, intermittent accidental DBA experience since SQL Server 6.0). It's ...
0
votes
1answer
10 views
AD operation with system::directoryservices fails with LDAP error 82
We have a C++/cli library which is performing a number of AD operations (unlock/password set/group lookup etc) this was written with a combination of directoryservices(direct ldap modifications for ...
0
votes
1answer
20 views
Get active directory user group property in asp.net website - web.config
In my asp.net website, I am using ActiveDirectoryRoleProvider in my web.config. I would like to get active directory user group properties like ( group name, group description...) in my site. As there ...
0
votes
0answers
21 views
ActiveDirectory Query Exception when called from IIS Worker Process
In our ASP.NET HttpApplication we query ActiveDirectory using the DirectorySearcher class (from System.DirectoryServices, .NET 4.0).
On some installations, performing the query results in a ...
0
votes
0answers
6 views
Can I get these metrics with JMX from OpenDJ?
-concurrent connections
- unindexed searches count
- replication status
I used jconsole but I didn't seem to find them. Do I need to use LDAP-based monitoring for that?
Thank you!
0
votes
0answers
25 views
Active Directory ValidateCredential doesn't work outside domain in ASP.NET
I'm validating an user using Active Directory in my ASP.NET c# application. It is hosted on my server and works perfectly while I'm on my network. But can't do the same over the internet from the same ...
0
votes
1answer
15 views
DirectoryEntry path with server.company.local
Got a function where the user authenticate against active directory.
Works great when I only have it like this:
new DirectoryEntry("LDAP://DC=" +"company" + ",DC=" + "local", userName, password)
In ...
0
votes
2answers
47 views
Use appguid if available otherwise use hardcoded guid in LINQ
How can I write below lambda expression so it can check for a matching appguid and if it won't find any, then it will look for hardcoded guid instead?
public static string ActiveDirectory(string ...
0
votes
1answer
23 views
Kerberos: HTTP/computer.domain@DOMAIN vs HTTP/computer@DOMAIN as service principal name
Is there any simple explanation about which is correct? I suppose both can used, just like I can access computer on a network via 'computer' and 'computer.domain'.
Maybe there're different correct ...
0
votes
1answer
20 views
Directory Services Returns Strange Characters
At the moment we've got a SQL Server view that queries AD and returns information about all the Groups.
SELECT ADsPath, cn, mail, displayname
FROM OPENQUERY(ADSI, 'SELECT ADsPath, ...
0
votes
0answers
28 views
The server could not be contacted
I have an UAT Active Directory on a virtual machine. The machine's IP have changed recently and I can ping the machine but for some reason I cant access it in my web app. I have done a dns flush on ...
1
vote
0answers
23 views
Trust Relationship between the Primary Domain and the Trusted Domain exception on SecurityIdentifier.Translate
In a script task within SSIS, I am running this block of code
SecurityIdentifier sid = new SecurityIdentifier(memberDN.Substring(0, memberDN.IndexOf(",")).Replace("CN=", ""));
try
{
NTAccount ...
1
vote
1answer
27 views
Use powershell to look up 'net user' on other domains?
What I am looking to do is to
net user user1 /DOMAIN
However, I'd like to do it for a domain that the computer ISN'T joined to but has access to.
Users are spread into DOMAIN1 and DOMAIN2. The ...
0
votes
1answer
16 views
Client-side switching accounts
On svn server we use active directory to authenticate users. however, users won't always be logged in to a machine on a company domain (customer sites, home computer, etc.)
However, instead of ...
2
votes
0answers
57 views
UserPrincipals.GetAuthorizationGroups An error (1301) occurred while enumerating the groups. After upgrading to Server 2012 Domain Controller
Research:
Similar Issue with workaround, but not actual solution to existing problem
Similar issue pointing to Microsoft End Point update as culprit
The above links are the most suited to my ...
0
votes
0answers
19 views
OwnCloud and Hierarchical AD Groups
I tried to implement a Herarchical Group Structure with Microsoft Active Directory.
It was possible without any Problems.
For Example:
I have a Top Level Group Called TopTest.
This Group contains ...
0
votes
0answers
17 views
Get only the windows logged in user name via Servlet without AD authentication
Is there a way to get only the client's windows logged-in username without using authentication against AD server?
(Without using SPNEGO, JCIFS or something)
I tried a Javascript which uses ActiveX, ...
1
vote
2answers
58 views
+50
Kerberos: kvno is '1' in client tickets
We're configuring SSO for our web app for a customer, but unfortunately we don't have access to the domain controller (one more reason why we don't do more experimenting to check our assumptions). So, ...
0
votes
0answers
22 views
Associate known username during installation for app with elevated permissions in C#
I have a .NET 4 (C#) app that requires elevated privileges to run. It is used in a scenario, where this is not ideal but due to some low-level API calls requested by the client, there is no other ...
0
votes
2answers
29 views
Invocation error saving a list of users in Active Directory
I have a problem saving users, from a csv file, in active directory, using an ASP.Net MVC 4 application (framework 4.5).
The problem is that the first user is saved correctly, but the second returns ...
0
votes
2answers
30 views
ASP.NET MembershipProvider - SQL Server vs. Active Directory
There are several option for storing the users info when dealing with ASP.NET Membership providers. I would like to ask if they are comparable in terms of performance. Especially of ...
1
vote
0answers
25 views
User creation error in Liferay
I am trying to export users from Liferay to Active Directory. Import works fine. After i have set the options for export I am not able to create user in Liferay.
I am receiving error like ,
...
0
votes
1answer
26 views
Powershell Script Gives Error But Still Returns “Successfully”
I'm writing a program to create an AD account and enable an Exchange mailbox and I'm getting some strange behaviour from it.
First, although it creates an AD user successfully, the mailbox cannot be ...



