PowerShell Logo Small

Set-NfsClientgroup



This is the built-in help made by Microsoft for the command 'Set-NfsClientgroup', in PowerShell version 3 - as retrieved from Windows version 'Microsoft Windows Server 2012 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 [<SwitchParameter>]]
[-CimSession <CimSession[]>] [-ThrottleLimit <Int32>] [-Confirm [<SwitchParameter>]] [-WhatIf [<SwitchParameter>]] [<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

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.