Share via


Get-HpcMember

Get-HpcMember

Gets one or more specified members for the HPC cluster, or gets all members of one or more specified roles. If you do not specify any members or roles, the Get-HpcMember cmdlet gets all members in all roles for the HPC cluster.

Syntax

Parameter Set: Default
Get-HpcMember [[-Name] <String[]> ] [-Role <String[]> ] [-Scheduler <String> ] [ <CommonParameters>]

Detailed Description

Gets one or more specified members for the HPC cluster, or gets all members of one or more specified roles. If you do not specify any members or roles, the Get-HpcMember cmdlet gets all members in all roles for the HPC cluster.

Parameters

-Name<String[]>

Specifies a list of one or more names for the users or administrators for which you want to get information or HpcMember objects. Use the domain\user_name format to specify a user or administrator. If someone belongs to both the user and administrator roles, the Get-HpcMember cmdlet gets two entries for that person, one for each role, unless you also specify the Role parameter.

Aliases

none

Required?

false

Position?

1

Default Value

no default

Accept Pipeline Input?

True (ByValue, ByPropertyName)

Accept Wildcard Characters?

false

-Role<String[]>

Specifies a list of one or more roles for the members for which you want to get information or HpcMember objects. The valid roles include user and administrator.

The following additional roles were introduced in HPC Pack 2012 with Service Pack 1 (SP1): JobAdministrator and JobOperator. These roles are not supported in previous versions.

Aliases

none

Required?

false

Position?

named

Default Value

user,administrator,jobadministrator,joboperator

Accept Pipeline Input?

True (ByPropertyName)

Accept Wildcard Characters?

false

-Scheduler<String>

Specifies the host name or IP address of the head node for the cluster that includes the members. The value must be a valid computer name or IP address. If you do not specify the Scheduler parameter, this cmdlet uses the scheduler on the head node that the CCP_SCHEDULER environment variable specifies. To set this environment variable, run the following cmdlet:

Set-Content Env:CCP_SCHEDULER <head_node_name>

Aliases

none

Required?

false

Position?

named

Default Value

%CCP_SCHEDULER%

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

<CommonParameters>

This cmdlet supports the common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, and -OutVariable. For more information, see about_CommonParameters

Inputs

The input type is the type of the objects that you can pipe to the cmdlet.

  • One or more HpcMember objects, through their Name and Role properties.

Outputs

The output type is the type of the objects that the cmdlet emits.

  • One or more HpcMember objects.

Notes

  • You must be a cluster administrator to run this cmdlet successfully.

  • For information about user roles on the HPC cluster, see Understanding User Roles.

Examples

EXAMPLE 1

Gets all of the members in all roles for the HPC cluster.

PS C:\>Get-HpcMember

EXAMPLE 2

Gets all of the administrators for the HPC cluster with a head node named HeadNode.

PS C:\>Get-HpcMember -Role administrator -Scheduler HeadNode

EXAMPLE 3

Gets the cluster member with a user name of someone in the CONTOSO domain. If CONTOSO\someone is in more than one user role, the cmdlet gets multiple entries or HpcMember objects for CONTOSO\someone.

PS C:\>Get-HpcMember -Name CONTOSO\someone

EXAMPLE 4

Gets all of the users for the HPC cluster that belong to the domain named CONTOSO.

PS C:\>Get-HpcMember -Name CONTOSO\* -Role user

Add-HpcMember

Remove-HpcMember