Remove-NfsMappedIdentity

Remove-NfsMappedIdentity

Removes a mapping between a UNIX account and a Windows account.

構文

Parameter Set: User
Remove-NfsMappedIdentity -UserName <String> [-GroupIdentifier <Int32> ] [-LdapNamingContext <String> ] [-MappingStore <MappingStoreType> ] [-Server <String> ] [-UserIdentifier <Int32> ] [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: Default
Remove-NfsMappedIdentity [-GroupIdentifier <Int32> ] [-LdapNamingContext <String> ] [-MappingStore <MappingStoreType> ] [-Server <String> ] [-UserIdentifier <Int32> ] [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: Group
Remove-NfsMappedIdentity -GroupName <String> [-GroupIdentifier <Int32> ] [-LdapNamingContext <String> ] [-MappingStore <MappingStoreType> ] [-Server <String> ] [-Confirm] [-WhatIf] [ <CommonParameters>]

詳細説明

The Remove-NfsMappedIdentity cmdlet removes a mapped identity from a Network File System (NFS) server mapping store.

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.

パラメーター

-GroupIdentifier<Int32>

Specifies the group identifier of a mapped identity.

エイリアス

GroupId,gid

必須?

false

位置は?

named

既定値

なし

パイプライン入力を許可する

True (ByPropertyName)

ワイルドカード文字を許可する

false

-GroupName<String>

Specifies the SAMAccountName of the group account.

エイリアス

group

必須?

true

位置は?

named

既定値

なし

パイプライン入力を許可する

True (ByPropertyName)

ワイルドカード文字を許可する

false

-LdapNamingContext<String>

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

エイリアス

dn

必須?

false

位置は?

named

既定値

DefaultNamingContext

パイプライン入力を許可する

True (ByPropertyName)

ワイルドカード文字を許可する

false

-MappingStore<MappingStoreType>

Specifies the type of identity mapping store from which the Remove-NfsMappedIdentity cmdlet removes a mapped identity. When this parameter is not specified, the Remove-NfsMappedIdentity cmdlet gets the store configuration settings from the NFS server. Valid values are AD and LDAP.

エイリアス

store

必須?

false

位置は?

named

既定値

なし

パイプライン入力を許可する

True (ByPropertyName)

ワイルドカード文字を許可する

false

-Server<String>

Specifies the LDAP server instance of a store that NFS server uses. This can be a domain name, Active Directory Lightweight Directory Services (AD LDS) server name, or LDAP server name. When this parameter is not specified, the Remove-NfsMappedIdentity 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 Services (AD DS) domain of the computer when MappingStore is Active Directory.

エイリアス

LdapServer,ADDomainName

必須?

false

位置は?

named

既定値

localhost:389

パイプライン入力を許可する

True (ByPropertyName)

ワイルドカード文字を許可する

false

-UserIdentifier<Int32>

Specifies the user identifier of a user account.

エイリアス

UserId,uid

必須?

false

位置は?

named

既定値

なし

パイプライン入力を許可する

True (ByPropertyName)

ワイルドカード文字を許可する

false

-UserName<String>

Specifies the SAMAccountName of a user account.

エイリアス

user

必須?

true

位置は?

named

既定値

なし

パイプライン入力を許可する

True (ByPropertyName)

ワイルドカード文字を許可する

false

-Confirm

コマンドレットを実行する前に、ユーザーに確認を求めます。

必須?

false

位置は?

named

既定値

false

パイプライン入力を許可する

false

ワイルドカード文字を許可する

false

-WhatIf

コマンドレットを実行するとどのような結果になるかを表示します。コマンドレットは実行されません。

必須?

false

位置は?

named

既定値

false

パイプライン入力を許可する

false

ワイルドカード文字を許可する

false

<CommonParameters>

このコマンドレットは次の共通パラメーターをサポートします。-Verbose、-Debug、-ErrorAction、-ErrorVariable、-OutBuffer、-OutVariable.詳細については、以下を参照してください。 about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216)。

入力

入力型は、コマンドレットにパイプできるオブジェクトの型です。

出力

出力型は、コマンドレットによって生成されるオブジェクトの型です。

  • Nothing

Example 1: Remove identity mapping for a user

This command removes a mapped identity that is stored in the configured AD LDS instance, on a server where this command is run, for the user account LSPolly.

PS C:\> Remove-NfsMappedIdentity -MappingStore "LDAP" -UserName "LSPolly"

Example 2: Remove an identity mapping for a group

This command removes a mapped identity that is stored in a configured AD DS map store and that corresponds to the group account that has the group identifier 22.

PS C:\> Remove-NfsMappedIdentity -MappingStore "AD" -GroupIdentifier 22

関連トピック

Get-NfsMappedIdentity

New-NfsMappedIdentity

Resolve-NfsMappedIdentity

Set-NfsMappedIdentity

Test-NfsMappedIdentity

Get-NfsMappingStore

Install-NfsMappingStore

Set-NfsMappingStore

Test-NfsMappingStore