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

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Mode

Specifies the set of actions the permission allows:

  • Read
  • ReadWrite

VBRPermissionMode

True

Named

False

ServerName

Specifies the host's DNS name or IP mask. The host will be given the permission to access 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 [`VBRApplicationBackupRepositoryPermission`](vbrapplicationbackuprepositorypermission.md) object that contains information about the permission for the application backup repository NFS share. ## Examples ::: example ### Creating Permission Settings to Access NFS Share This command creates new read/write permission settings for the `172.24.26.132` host to access the NFS share of an application backup repository. ``` $permission = New-VBRApplicationBackupRepositoryPermission -Mode ReadWrite -ServerName 172.24.26.132 ``` :::