Tagged Questions
The active-directory-group tag has no wiki summary.
3
votes
2answers
754 views
Get groups from Active Directory using C#
I am having issues getting the groups from Active Directory via System.DirectoryServices
Originally I started my application on a computer that was registered on the domain, but as it was a live ...
2
votes
2answers
360 views
Listing users in ad group recursively with powershell scroipt without cmd-lets
I'm trying to list everyone in a security group in an active directory without using cmd-lets in powershell. The weird thing with my script is that it works if I list the entire directory but if I try ...
2
votes
1answer
115 views
Accessing active directory from C#
I am trying to access directory in XXX domain from my console application.
DirectoryEntry oDE = new DirectoryEntry("LDAP://DC=XXXX,DC=myDomain,DC=com");
using ...
2
votes
2answers
487 views
asp.net web app - check user exist in Active Directory group
I have asp.net web app, how to check the current logged in user (client) is in specific Active directory group.
Thanks
2
votes
4answers
3k views
Adding and removing users from Active Directory groups in .NET
I am writing the following methods to add and remove users from active directory in C#.
void AddUserToGroup(string userId, string groupName);
void RemoveUserFromGroup(string userId, string ...
2
votes
2answers
2k views
LDAP Query to List All Groups User is a Member of?
Given a username, how would I go about writing an LDAP query that will return all groups that the user is a member of?
1
vote
1answer
36 views
Restrict access to a WPF view based on AD group membership
We have a WPF application. We would like to resrict access to the application based on the users AD group membership.
Could we do this as an attribute on each view, or as a check when the user starts ...
1
vote
1answer
48 views
How to check if an Active Directory group is a member of a another Active Directory group
Suppose user johnsmith is a member of an active directory group MyManagers.
Suppose group MyManagers is a member of the group MyEmployees.
Suppose group MyEmployees is a member of the group MyUsers.
...
1
vote
1answer
172 views
how to check whether a user is a member of distribution list/security group in AD C#
I am using below piece of code to check the whether a given user is part of distribution group in AD.
static bool IsUserMemberOf(string userName, string groupName)
{
using (var ctx = new ...
1
vote
2answers
2k views
How do I email Active Directory distribution groups from a c# web application?
I'm trying to send email to Active Directory distribution groups.
I know you can send mail using something like:
mail.From = new MailAddress("steveb@microsoft.com");
...
0
votes
1answer
48 views
How to handle login error, when unable to connect to Active Directory
My web application uses Active Directory groups to check that the user is in a certain group - and change their access accordingly, but there seems to be an intermittent issue from the application ...
0
votes
1answer
38 views
Allowing access to an MVC site using Windows Authentication Via groups via username
I have an MVC2 site that now allows access to it via windows authentication and uses ASP.net Role provider to provide authorization. I am trying to come up with a way for the site to allow the user ...
0
votes
1answer
70 views
System.DirectoryServices.Protocol add/remove user from group
I want to Add remove a user from a group in System.DirectoryServices.Protocol namespace.
I have the samples mentioned here :
link to my other question
But can't find an exampel fo how to add and ...
0
votes
2answers
127 views
Active Directory Subgroups search
I need have a root AD group and need to enumerate through all its subgroups. I have a code, that connects to the AD server and tries to retrieve subgroups list.
Here's the code:
private ...
0
votes
1answer
107 views
How to differentiate new added objects and updated objects in DirSync search results (Active Directory)?
Both new added objects and updated objects are returned in DirSync search results, from Active Directory server.
How to differentiate them, in SearchResponse?
...
0
votes
1answer
51 views
Java process determining executing user's NT groups
I'm aware I can call out to Active Directory and do queries provided I have a cleartext username and password. (I don't want to do that)
In VB, I can set authorisation levels by NT group - and the ...
0
votes
1answer
47 views
Authorise a JAAS session by NT Group?
Is it possible to authorise JAAS sessions based on membership of NT Groups?
0
votes
2answers
101 views
How to Optimize Decomposing AD Groups Using C# .Net 3.5
I need to retrieve group members for several hundred AD groups. While the code below gives the right answer, it is very slow. Is there a more efficient approach to decompose these groups to its ...
0
votes
1answer
184 views
VB.NET - Troubleshooting IIS7 Active Directory Group Members Issue w/ Error Log Text File
Background: I have an application that loads marketing companies into a drop down list if the currently logged in user is a member of that marketing group in active directory. The Group ACOMP_USER_BIG ...
0
votes
1answer
79 views
Duplicate Entry error when enabling AD account
I am trying to add users to Active Directory programmatically and I keep running into an error - no matter what user I create as soon as I enable the account a "Duplicate Entry " error is thrown. This ...
0
votes
0answers
41 views
Is it possible to define an AD group to be the exclusion of two other groups? (Group A except where in Group B)
Currently there is an SSRS report that sends to the entire company, but there is a business requirement to exclude a few AD groups from the recipient group (which encapsulates every other group). We ...
0
votes
1answer
473 views
VB.NET - Error Reference to a non-shared member requires an object reference (WindowsIdentity.Groups Property)
I am getting the following error:
Error 1 Reference to a non-shared member requires an object reference.
(on WindowsIdentity.Groups)
Here's my code from that uses the ...
0
votes
2answers
315 views
ASP.NET VB.NET - How to populate Active Directory Logged in Current User's Name into Text Box Field
Background: I have a webForm app that registers a user in the database based on the information provided with a web service, auto-generates a random password and username, and e-mails the user a link ...
0
votes
0answers
343 views
How do I automatically map network drives using GPO? [closed]
I have followed tutorials online for this. I create a GPO and go to the window to edit it. I select the mapped drives option and configure the network address of the drive. I have tried with the ...
0
votes
1answer
691 views
Reading Active Directory group users in SharePoint
Say that i have an active directory group called "Group1". I add this Group1 to a SharePoint site ( People and Group >> New User).
All the users that are part of Group1 can now access sharepoint ...