PowerShell Logo Small

Set-NfsClientConfiguration



This is the built-in help made by Microsoft for the command 'Set-NfsClientConfiguration', 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

Changes configuration settings for an NFS client.

SYNTAX


Set-NfsClientConfiguration [-AsJob] [-Authentication <String[]>] [-CaseSensitiveLookup <Boolean>] [-CimSession <CimSession[]>] [-DefaultAccessMode <UInt32>] [-InputObject
<CimInstance[]>] [-MountRetryAttempts <UInt32>] [-MountType <String>] [-PassThru] [-ReadBufferSize <UInt32>] [-RpcTimeoutSec <UInt32>] [-ThrottleLimit <Int32>]
[-TransportProtocol <String[]>] [-UseReservedPorts <Boolean>] [-WriteBufferSize <UInt32>] [-Confirm] [-WhatIf] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Set-NfsClientConfiguration cmdlet changes configuration settings for a Network File System (NFS) client. You can use the Get-NfsClientConfiguration cmdlet to get a
configuration object for an NFS client.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/?linkid=287508
Get-NfsClientConfiguration

REMARKS

<

Examples


Example 1: Modify configuration settings for an NFS client

PS C:\> Set-NfsClientConfig -DefaultAccessMode 755 -ReadBufferSize 64 -WriteBufferSize 64



This command modifies configuration settings for an NFS client on the local computer. This command sets the default permissions for newly created files to 755, and it sets
the sizes of the read and write buffers to 64 kilobytes (KB).

The default permission of 755 sets read, write, and execute permissions (7 – rwx) for the owner, read and execute permissions (5 -- r-x) for the group, and read and execute
permissions (5 -- r-x) for others.