Edit

Share via


Get-NfsMappedIdentity

Gets an NFS mapped identity.

Syntax

DefaultSettings (Default)

Get-NfsMappedIdentity
    -AccountType <AccountType>
    [-MappingStore <MappingStoreType>]
    [-UserIdentifier <Int32>]
    [-GroupIdentifier <Int32>]
    [-AccountName <String>]
    [<CommonParameters>]

AdAdlds

Get-NfsMappedIdentity
    -MappingStore <MappingStoreType>
    -AccountType <AccountType>
    [-Server <String>]
    [-LdapNamingContext <String>]
    [-UserIdentifier <Int32>]
    [-GroupIdentifier <Int32>]
    [-AccountName <String>]
    [<CommonParameters>]

MapFiles

Get-NfsMappedIdentity
    -MappingStore <MappingStoreType>
    -AccountType <AccountType>
    [-MapFilesPath <String>]
    [-UserIdentifier <Int32>]
    [-GroupIdentifier <Int32>]
    [-AccountName <String>]
    [<CommonParameters>]

Description

The Get-NfsMappedIdentity cmdlet gets a Network File System (NFS) mapped identity.

A mapped identity associates a Windows user account or group account to a UNIX user account or group account. A user ID (UID) or group ID (GID) identifies a UNIX account namespace. These elements are associated with the corresponding elements of a Windows account namespace: a user name or a group name. By using a mapped identity, a user who is logged on to a UNIX domain can access shared resources in a Windows domain without having to log on to the Windows domain.

For more information about NFS, see Network File System. For more information about NFS account mapping, see NFS Account Mapping Guide and Identity Management for UNIX.

Examples

Example 1: Get a mapped identity for a user account by using a specified name

PS C:\> Get-NfsMappedIdentity -MappingStore "LDAP" -AccountType "User" -AccountName "RPatel"

This command gets all user account mapped identities from a configured AD LDS or RFC 2307-compliant LDAP store instance. In this example, the command returns PrimaryGroup and SupplementaryGroups only when the configured mapping store is MapFiles.

Example 2: Get all group account mapped identities from a specific store instance

PS C:\> Get-NfsMappedIdentity -MappingStore "LDAP" -AccountType "Group" -GroupName "Administrators"

This command gets all mapped identities in the Administrator group from a configured AD LDS or RFC 2307-compliant LDAP store instance.

Example 3: Get a mapped identity for a group account by using a specified Id

PS C:\> Get-NfsMappedIdentity -MappingStore "LDAP" -AccountType "Group" -GroupIdentifier "GID99"

This command gets a mapped identity for the group account that has the GID 99, from a configured AD LDS or RFC 2307-compliant LDAP store instance.

Example 4: Get all user account mapped identities from a specific mapping store

PS C:\>Get-NfsMappedIdentity -MappingStore "LDAP" -AccountType "User"

This command gets all user account mapped identities from a configured AD LDS or RFC 2307-compliant LDAP store instance. PrimaryGroup and SupplementaryGroups are returned only when the configured mapping store is MapFiles.

Example 5: Get all user account mapped identities from a mapping store that is specified in the NFS Server configuration settings

PS C:\>Get-NfsMappedIdentity -AccountType "User"

This command gets all user account mapped identities from a mapping store that is specified in the NFS server configuration settings.

Parameters

-AccountName

Specifies the SAMAccountName of the Windows user account or group account of a mapped identity.

Parameter properties

Type:String
Default value:None
Supports wildcards:False
DontShow:False
Aliases:aname, an

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:True
Value from remaining arguments:False

-AccountType

Specifies the Windows account type of a mapped identity. Valid values are User and Group.

Parameter properties

Type:AccountType
Default value:None
Accepted values:User, Group
Supports wildcards:False
DontShow:False
Aliases:atype, at

Parameter sets

(All)
Position:Named
Mandatory:True
Value from pipeline:False
Value from pipeline by property name:True
Value from remaining arguments:False

-GroupIdentifier

Specifies the group identifier of a user or group account.

Parameter properties

Type:Int32
Default value:None
Supports wildcards:False
DontShow:False
Aliases:GroupId, gid

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:True
Value from remaining arguments:False

-LdapNamingContext

Specifies the Lightweight Directory Access Protocol (LDAP) naming context of the NFS identity mapping store. You can use this parameter to search for mapped identities in the specified naming context.

Parameter properties

Type:String
Default value:DefaultNamingContext
Supports wildcards:False
DontShow:False
Aliases:dn

Parameter sets

AdAdlds
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:True
Value from remaining arguments:False

-MapFilesPath

Specifies the path of the passwd and group map files from which the Get-NfsMappedIdentity cmdlet gets a mapped identity.

Parameter properties

Type:String
Default value:%SystemRoot\System32\Drivers\etc\
Supports wildcards:False
DontShow:False

Parameter sets

MapFiles
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:True
Value from remaining arguments:False

-MappingStore

Specifies the type of identity mapping store from which the Get-NfsMappedIdentity cmdlet gets a mapped identity. When this parameter is not specified, the cmdlet gets the store configuration settings from the NFS server configuration where this command is run configuration where this command is run.

The acceptable values for this parameter are:

  • AD
  • LDAP
  • MapFiles

Parameter properties

Type:MappingStoreType
Default value:None
Accepted values:Ad, Ldap, Mapfiles
Supports wildcards:False
DontShow:False
Aliases:store

Parameter sets

DefaultSettings
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:True
Value from remaining arguments:False

-Server

Specifies the LDAP instance name of the store that NFS server uses. This can be an Active Directory domain name, Active Directory Lightweight Directory Services (AD LDS) server name, or LDAP server name. When this parameter is not specified, the cmdlet tries to connect to either the LDAP store on the local computer at port 389 when MappingStore is LDAP, or the Active Directory domain of the computer when MappingStore is Active Directory.

Parameter properties

Type:String
Default value:Localhost:389
Supports wildcards:False
DontShow:False
Aliases:LdapServer, ADDomainName

Parameter sets

AdAdlds
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:True
Value from remaining arguments:False

-UserIdentifier

Specifies the UID of the user account.

Parameter properties

Type:Int32
Default value:None
Supports wildcards:False
DontShow:False
Aliases:UserId, uid

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:True
Value from remaining arguments:False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

Outputs

System.FileServices.Management.Nfs.UserMappedIdentity

System.FileServices.Management.Nfs.GroupMappedIdentity