PowerShell Logo Small

Get-NfsSharePermission



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

Gets information about permissions that an NFS server grants to exported NFS shares.

SYNTAX


Get-NfsSharePermission [-Name] <String> [[-ClientName] <String>] [[-ClientType] <String>] [[-Permission] <String>] [-AsJob
[<SwitchParameter>]] [-CimSession <CimSession[]>] [-NetworkName <String>] [-ThrottleLimit <Int32>] [<CommonParameters>]
Get-NfsSharePermission [-Path] <String> [[-ClientName] <String>] [[-ClientType] <String>] [[-Permission] <String>] [-AsJob
[<SwitchParameter>]] [-CimSession <CimSession[]>] [-ThrottleLimit <Int32>] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Get-NfsSharePermission cmdlet gets information about access permissions granted by a Network File System (NFS) server that has an NFS
share configured.



<

RELATED LINKS






REMARKS

<

Examples


Example 1: Get all permissions for a specified NFS share

PS C:\> Get-NfsSharePermission -Name "Export"
ClientName : All Machines
ClientType : Built-in Group
Name : Export
Path : C:\shares\Export
Permission : READ, WRITE
AllowRootAccess : ALLOW ACCESS
LanguageEncoding : ansi



This command gets the permissions for an NFS share named Export.




Example 2: Get read/write permissions for a specified NFS share

PS C:\> Get-NfsSharePermission -Name "Export" -Permission "readwrite"



This command gets the read/write permissions for an NFS share named Export.