PowerShell Logo Small

Set-NfsClientgroup



This is the built-in help made by Microsoft for the command 'Set-NfsClientgroup', in PowerShell version 5 - as retrieved from Windows version 'Microsoft Windows Server 2012 R2 Standard' PowerShell help files on 2016-06-23.

For PowerShell version 3 and up, where you have Update-Help, this command was run just before creating the web pages from the help files.

SYNOPSIS

Adds and removes client computers from a client group.

SYNTAX


Set-NfsClientgroup [-ClientGroupName] <String> [[-AddMember] <String[]>] [[-RemoveMember] <String[]>] [-AsJob] [-CimSession <CimSession[]>] [-ThrottleLimit <Int32>]
[-Confirm] [-WhatIf] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Set-NfsClientGroup cmdlet adds and removes client computers from a client group on a Network File System (NFS) server. Use the ClientGroupName parameter to specify a
client group to modify. Then, use the AddMember parameter to specify the client computers to add, and use the RemoveMember parameter to specify the client computers to
remove.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/?linkid=287509
Get-NfsClientgroup
New-NfsClientgroup
Remove-NfsClientgroup
Rename-NfsClientgroup

REMARKS

<

Examples


Example 1: Add a client computer to a client group

PS C:\> Set-NfsClientGroup -Name "Contoso-Group2" -AddMember "10.121.24.132"



This command adds the client computer that has the IP address 10.121.24.132 to the client group named Contoso-Group2.




Example 2: Remove a client computer from a client group

PS C:\> Set-NfsClientGroup -ClientGroupName "Contoso-Group1" -RemoveMember "bill-laptop"



This command removes the client computer named bill-laptop from the client group named Contoso-Group1.