Set-NfsNetgroup

Modifies a netgroup.

Syntax

Set-NfsNetgroup
   [-NetGroupName] <String>
   [[-AddMember] <String[]>]
   [[-RemoveMember] <String[]>]
   [[-LdapServer] <String>]
   [[-LdapNamingContext] <String>]
   [-WhatIf]
   [-Confirm]
   [<CommonParameters>]

Description

The Set-NfsNetgroup cmdlet adds or removes netgroup members. You can specify a netgroup member by its host name or IP address.

You can modify netgroups that are stored in Active Directory Domain Services (AD DS) or Active Directory Lightweight Directory Services (AD LDS) only. To modify a netgroup that is stored in Network Information Service (NIS), use the corresponding NIS administration tool. For more information about how to manage an NIS server, see Server for NIS Administration.

Examples

Example 1: Add a member to a netgroup

PS C:\> Set-NfsNetgroup -LdapServer "Contoso.com" -NetGroupName "AppServers" -AddMember "APPServer-08"
NetgroupName          : AppServers
NetgroupNamingContext : CN=mappedidentity,DC=Contoso,DC=com
NetgroupMembers       : {appserver-08, appserver-07}

This command adds a member that is named APPServer-08 to a netgroup that is named AppServers, in a network store that is named Contoso.com.

Parameters

-AddMember

Specifies an array of host names or IP addresses of client computers to add to a netgroup.

Type:String[]
Aliases:add
Position:1
Default value:None
Required:False
Accept pipeline input:True
Accept wildcard characters:False

-Confirm

Prompts you for confirmation before running the cmdlet.

Type:SwitchParameter
Aliases:cf
Position:Named
Default value:False
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-LdapNamingContext

Specifies the Lightweight Directory Access Protocol (LDAP) naming context of a netgroup store.

Type:String
Aliases:dn
Position:4
Default value:None
Required:False
Accept pipeline input:True
Accept wildcard characters:False

-LdapServer

Specifies an LDAP server name of a netgroup store.

Type:String
Aliases:ldap
Position:3
Default value:None
Required:False
Accept pipeline input:True
Accept wildcard characters:False

-NetGroupName

Specifies the name of a netgroup. This parameter is mandatory.

Type:String
Aliases:name, ngname
Position:0
Default value:None
Required:True
Accept pipeline input:True
Accept wildcard characters:False

-RemoveMember

Specifies an array of host names or IP addresses of client computers to remove from a netgroup.

Type:String[]
Aliases:remove
Position:2
Default value:None
Required:False
Accept pipeline input:True
Accept wildcard characters:False

-WhatIf

Shows what would happen if the cmdlet runs. The cmdlet is not run.

Type:SwitchParameter
Aliases:wi
Position:Named
Default value:False
Required:False
Accept pipeline input:False
Accept wildcard characters:False

Outputs

Microsoft.FileServices.Powershell.Nfs.NetGroup