|
What's the command to figure out who the members are of a *nix group?
Started by Nate on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
Grep ^<groupname>: /etc/group
depending on the environment, for secondary groups here are some options.:
" getent group | grep ^groupname: " (getent - get entries from administrative database)
" ypcat group | grep ^groupname....
|
|
Is there some software for visual studio to automatically group c# class members?
Started by Ronnie Overby on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
The developer to quickly find solution files, types, particular type members, methods or properties.
|
|
What's the easiest way to check the members of an AD Domain Group from a Windows XP or Server 2003 computer?
Preferably this would be a gui, or a one line console command (not a script).
Started by C. Ross on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
Open Active Directory....
You can use JiJi Active Directory Reports for checking members of Distribution Group.
Opening it up there is a "Members" tab that will list all user's in the group.
You can search for the group.
|
Ask your Facebook Friends
|
I must be doing something silly but I'm damned if I can see what. According my Googling this Powershell script should list the members of the Domain Users group:
$root=([ADSI]"").distinguishedName $group = [ADSI] ("LDAP://cn=Domain Users,cn=Users," + ...
Started by John Rennie on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
I took a peek at the group in ADSI Edit, and the member property is empty....
If i query another group in my domain I get the properties.
;)
Odd, it seems that the Domain users group does not have the member properties.
|
|
I need to monitor number of the facebook group users and display it on the website. I know that it is possible to get User IDs using their API, but they are limited to 500 only (if the total number of members is 500+).
What would be the easiest way to...
Started by Michal on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You may.
Worse, you seem to only be able to get 500 random members.
group members with an API call.
|
|
Is there a simple script I can use to give a destination folder and the AD group I want to use and it would generate a set of folders with the members of that AD group and delegate the proper permissions to those folders?
I have gotten as far as dsget...
Started by Daniel A. White on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
Option Explicit ' DOMAIN\Group to process Const DOMAIN = "DOMAIN" Const GROUP = "Human Resources Department" ' Destination path - Do") objNameTranslate.Init ADS_NAME....
The changes to the object set-acl $File.Fullname $acl }
Here-- have at .
|
|
We're using nagios to check our ssh server is running. We have the check_ssh group defined for all members of a certain group. We have other services defined for that group as well. Everything is fine. However for 2 of the members of this group, they ...
Started by Rory McCann on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
For example:
define service{ service_description CPU Stats servicegroups sysres use generic hostgroup_name linux host_name !server1 check_command check... .
Use the host_name directive in the service definition with an exclamation before the name of the host .
|
|
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 known accounts. I also want to check whether a user is...
Started by Keith Moore on
, 5 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Of a local group using the 'standard' methods, the only way I could get it to enumerate the members = new DirectoryEntry("WinNT://./Administrators,group")) { foreach(object member in (IEnumerable) groupEntry.Invoke("Members....
|
|
Hi, I'm writing a script to access all dynamic textfields in the library of a flash (fla) file and embed certain character sets.
I iterate through all objects looking for textfields, but It seems there are some issues when trying to access members of ...
Started by Brian Heylin on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
On :)
You've hinted at the answer already yourself: use the members property on the shape objects = fl.findObjectInDocByType(typeToSearchFor, doc); var textObjects; for(var i = 0; i < results.length; i++) { var members = results[i].....
|
|
Hello,
I am having a problem where in SharePoint 2007 after verifying the profile import was successful and the AD group is there, I go to audiences and try to create a rule where the user must be a member of said AD group. The problem is that when i ...
Started by Burbidge87 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
So I resolved this issue by removing oneCould you try to create a SharePoint group that has the same name and holds to AD group.
As it's member? Then add the Sharepoint group to the audience.
|