--- title: "New-VBRObjectStorageBackupServerPathMask" description: "Defines an exclusion mask for prefixes in object storage. Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet creates the VBRObjectStorageBackupServerPathMask object." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/new-vbrobjectstoragebackupserverpathmask.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Unstructured Data Backup > Working with Unstructured Data Source Jobs > Managing Backup Jobs for Protecting Unstructured Data > New-VBRObjectStorageBackupServerPathMask" dateModified: "2026-08-19" --- # New-VBRObjectStorageBackupServerPathMask ## Short Description Defines an exclusion mask for prefixes in object storage. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` New-VBRObjectStorageBackupServerPathMask -Path [] ``` ## Detailed Description This cmdlet creates the `VBRObjectStorageBackupServerPathMask` object. This object defines an exclusion mask for prefixes in object storage. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Path

This object defines an exclusion mask for prefixes in object storage.

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 `VBRObjectStorageBackupServerPathMask` object that defines an exclusion mask for prefixes in object storage. ## Examples ::: example ### Defining Exclusion Mask for Prefixes Within Object Storage This command defines that prefixes that start with `files/New Inc-Exc` will be excluded from object storage backups. ``` $ExclusionMask = New-VBRObjectStorageBackupServerPathMask -Path "files/New Inc-Exc" ``` :::