--- title: "New-VBRNASBackupWildcardMask" description: "This cmdlet creates the VBRNASBackupWildcardMask object. This object defines settings of a wildcard mask for file backup job. You can use this mask to exclude files from file backup job or include them to this job." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/new-vbrnasbackupwildcardmask.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Unstructured Data Backup > Working with Unstructured Data Source Jobs > Adding File Backup Jobs > New-VBRNASBackupWildcardMask" dateModified: "2026-08-19" --- # New-VBRNASBackupWildcardMask ## Short Description Defines a wildcard mask for file backup job. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet creates the `VBRNASBackupWildcardMask` object. This object defines settings of a wildcard mask for file backup job. You can use this mask to exclude files from file backup job or include them to this job. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Wildcard

Specifies the wildcard value.

String

True

Named

True (ByPropertyName, ByValue)

`` 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 `VBRNASBackupWildcardMask` object that defines settings of a wildcard mask for file backup job. ## Examples ::: example ### Defining Wildcard Mask for File Backup Job This command defines the wildcard mask the `.avi` types of files. ``` $exclusionMask = New-VBRNASBackupWildcardMask -Wildcard "*.avi" ``` :::