--- title: "New-VBRKerberosPermission" description: "This cmdlet creates a new permission to access the NFS share of an application backup repository with Kerberos credentials." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/new-vbrkerberospermission.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup Infrastructure > Application Backup Repositories > New-VBRKerberosPermission" dateModified: "2026-08-19" --- # New-VBRKerberosPermission ## Short Description Creates a new permission to access an application backup repository NFS share with Kerberos credentials. **Product Edition**: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` New-VBRKerberosPermission -Username -Mode [-Description ] [] ``` ## Detailed Description This cmdlet creates a new permission to access the NFS share of an application backup repository with Kerberos credentials. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Description

Specifies the description for the Kerberos permission.

String

False

Named

False

Mode

Specifies the set of actions the permission allows:

  • Read
  • ReadWrite

VBRPermissionMode

True

Named

False

Username

Specifies the name of the user that you want to grant access to the NFS share.

String

True

Named

False

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see [ Microsoft Docs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-7). ## Output Object The cmdlet returns the [`VBRApplicationBackupRepositoryKerberosPermission`](vbrapplicationbackuprepositorykerberospermission.md) object that contains information about the Kerberos permission for the application backup repository NFS share. ## Examples ::: example ### Creating Kerberos Permission to Access NFS Share This example shows how to create a read/write Kerberos permission for the `DOMAIN\BackupUser` account to access the NFS share of an application backup repository. ``` $permission = New-VBRKerberosPermission -Username "DOMAIN\BackupUser" -Mode ReadWrite -Description "Kerberos permission for backup access" ``` :::