6
votes
4answers
3k views
Get a list of members of a WinNT group (C#)
There are a couple of questions similar to this on stack overflow but not quite the same.
I want to open, or create, a local group on a win xp computer and add members to it, domain, local and well …
5
votes
4answers
389 views
Python script to list users and groups
I'm attempting to code a script that outputs each user and their group on their own line like so:
user1 group1
user2 group1
user3 group2
...
user10 group6
etc.
I'm writing up a script in …
4
votes
5answers
810 views
ASP.NET Membership - Which RoleProvider to use so User.IsInRole() checks ActiveDirectory Groups?
Very simple question actually:
I currently have IIS anonymous access disabled, users are automatically logged on using their Windows login. However calling User.IsInRole("Role name") returns false. I …
2
votes
3answers
168 views
What’s the best professional developer organization or association?
Is there an organization or association which a professional developer should get involved with? There are local .NET user groups, for example, but I'm thinking more about nationally/globally …
2
votes
3answers
1k views
“Most popular” GROUP BY in LINQ?
Assuming a table of tags like the stackoverflow question tags:
TagID (bigint), QuestionID (bigint), Tag (varchar)
What is the most efficient way to get the 25 most used tags using LINQ? In SQL, …
2
votes
8answers
834 views
Windows / Active Directory - User / Groups
I'm looking for a way to find a the windows login associated with a specific group. I'm trying to add permissions to a tool that only allows names formatted like:
DOMAIN\USER
DOMAIN\GROUP
I have a …
1
vote
2answers
43 views
Can different users have same USER ID in MOSS 2007
Hi I am just curious to know whether different users can have same user ID in MOSS 2007.
I have two SharePoint groups with different set of permission levels. SharePointGroup1 is in root site. The …
1
vote
2answers
64 views
How do I find Programming Clubs/User Groups in my Area?
Been programming for a while and would like to talk or chat with someone in my same programming language.
1
vote
3answers
422 views
DirectoryEntry.Invoke(”groups”,null) not retrieving all groups?
I created a WCF web service to return user and group information from Active Directory. It works fine for most groups and users, but not all.
I use directoryEntry.Invoke("groups",null) to return the …
1
vote
4answers
855 views
Sharepoint: Check if a user is member of a group
Hi,
how can I check if a user (not the one currently logged in) is member of a certain group? Trying to retrieve a user from a group of which he's not a member leads to an SPException, so checking …
1
vote
2answers
155 views
Can I replace groups in Java rexex?
I have this code, and I want to know, if I can replace only groups (not all pattern) in Java regex.
Code:
//...
Pattern p = Pattern.compile("(\\d).*(\\d)");
String input = "6 example input 4";
…
1
vote
5answers
289 views
Change description of a SharePoint group
Hi,
I'm trying to change the description of an existing SharePoint group which shouldn't be a really tough job but unfortunately it doesn't work as expected. After running the corresponding method …
1
vote
1answer
408 views
box2d collision groups
does anyone know whether bodies only collide when (body1.categoryBits & body2.maskBits) && (body1.maskBits & body2.categoryBits) ?
or do they already collide when (body1.categoryBits …
1
vote
4answers
442 views
Cannot get .NET application to access AD groups across domains
I have a .NET application distributed through ClickOnce. Security within the application is implemented through the WindowsPrincipal.IsInRole(GroupName) method using a set of groups as resources. This …
1
vote
6answers
768 views
Regex - Using Groups and MatchCollection - Problems
Hello,
I try to keep it brief and concise. I have to write a program that takes queries in SQL form and searches an XML. Right now I am trying to disassemble a string into logical pieces so I can …
