--- title: "Set-VBRFiler" description: "This cmdlet modifies settings of enterprise NAS systems added to the inventory. To modify settings, specify new values for the necessary parameters. The cmdlet will overwrite the previous parameter values with new values." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/set-vbrfiler.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Unstructured Data Backup > Working with Unstructured Data Source > Adding Enterprise Storage System as NAS Filer > Set-VBRFiler" dateModified: "2026-08-20" --- # Set-VBRFiler ## Short Description Modifies enterprise NAS systems added as file shares to the inventory. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet modifies settings of enterprise NAS systems added to the inventory. ::: note To modify settings, specify new values for the necessary parameters. The cmdlet will overwrite the previous parameter values with new values. The parameters that you omit will remain unchanged. ::: ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

AccessCredentials

Specifies credentials that the cmdlet will use to authenticate against the enterprise NAS system.

CCredentials

True

Named

False

BackupIOControlLevel

Specifies a speed that Veeam Backup & Replication will use to read data from the file server. You can specify either of the following speed:

  • Lowest
  • Low
  • Medium
  • High
  • Highest

VBRNASBackupIOControlLevel

False

Named

False

CacheRepository

Specifies the cache repository. Veeam Backup & Replication will keep the .VCACHE files on this repository.

Accepts the CBackupRepository object. To get this object, run the Get-VBRBackupRepository cmdlet.

CBackupRepository

False

Named

False

EnableSnapDiff

Use this parameter for Dell PowerScale (formerly Isilon) storages only.

Defines that during the file backup jobs Veeam Backup & Replication will use the file change tracking technology provided by the NAS manufacturer.

SwitchParameter

False

Named

False

Filer

Specifies the enterprise NAS system. The cmdlet will modify the settings of this server.

Accepts the VBRFiler object. To get this object, run the Add-VBRFiler cmdlet.

VBRFiler

True

Named

True (ByPropertyName, ByValue)

Force

Defines that the cmdlet will modify settings of enterprise NAS systems without showing warnings in the PowerShell console.

SwitchParameter

False

Named

False

MetaMigrationType

Specifies how the cmdlet will migrate metadata. You can use one of the following options:

  • CheckExistence — use this option to check that metadata is available on the current cache repository.
  • CopyMetaFromCache — use this option to migrate metadata from source cache repository to a new cache repository. Note: If metadata in a source cache repository is corrupted, the cmdlet will copy data from the archive repository.
  • DownloadMetaFromArchive — use this option to migrate metadata from archive repository or from replica metadata in archive repository.

VBRNASBackupMetaMigrationType

False

Named

False

Password

Specifies the password. The cmdlet will use this password to authenticate against the enterprise NAS system.

String

True

Named

False

RequireAccessCredentials

Defines that the cmdlet will check whether Veeam Backup & Replication uses authentication to access the SMB network shared folder.

If you do not provide this parameter, the cmdlet will not check credentials that are used to access the SMB network shared folder.

To remove credentials, specify the RequireAccessCredentials parameter with the :$False value.

Note: If credentials are not provided, the cmdlet will return an error. To avoid the error, you must specify credentials using either of the following parameters:

  • User and Password
  • AccessCredentials

SwitchParameter

False

Named

False

RetrievalSettings

Specifies the retrieval policy settings. The cmdlet will use these settings to retrieve data from archive repositories.

Accepts the VBRUnstructuredBackupColdStorageRetrievalSettings object. To create this object, run the New-VBRUnstructuredBackupColdStorageRetrievalSettings cmdlet.

VBRUnstructuredBackupColdStorageRetrievalSettings

False

Named

False

User

Specifies the user name. The cmdlet will apply this user name to authenticate against the enterprise NAS system.

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 `VBRFiler` object that defines the settings of the enterprise NAS system added as a file share to the inventory. ## Examples ::: example ### Example 1. Modifying Enterprise NAS System Added as File Share Without Authentication This example shows how to modify the enterprise NAS system as a file share to the inventory without authentication. ``` $filer = Get-VBRFiler -Name "ontap-2" $repository = Get-VBRBackupRepository -Name "Backup Repository 02" Set-VBRFiler -Filer $filer -CacheRepository $repository ``` Perform the following steps: 1. Run the [`Get-VBRFiler`](get-vbrfiler.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$filer` variable. 2. Run the [`Get-VBRBackupRepository`](get-vbrbackuprepository.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$repository` variable. 3. Run the `Set-VBRFiler` cmdlet. Specify the following settings: - Set the `$filer` variable as the `Filer` parameter value. - Set the `$repository` variable as the `CacheRepository` parameter value. ::: ::: example ### Example 2. Modifying Enterprise NAS System Added as File Share with User Name and Password This example shows how to modify the enterprise NAS system added as a file share to the inventory with user name and password. ``` $filer = Get-VBRFiler -Name "ontap-2" $repository = Get-VBRBackupRepository -Name "Backup Repository 02" Set-VBRFiler -Filer $filer -User Administrator -Password AdminCredentials -CacheRepository $repository ``` Perform the following steps: 1. Run the [`Get-VBRFiler`](get-vbrfiler.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$filer` variable. 2. Run the [`Get-VBRBackupRepository`](get-vbrbackuprepository.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$repository` variable. 3. Run the `Set-VBRFiler` cmdlet. Specify the following settings: - Set the `$filer` variable as the `Filer` parameter value. - Specify the `User` parameter value. - Specify the `Password` parameter value. - Set the `$repository` variable as the `CacheRepository` parameter value. ::: ::: example ### Example 3. Modifying Enterprise NAS System Added as File Share with Credentials This example shows how to modify the enterprise NAS system added as a file share to the infrastructure with credentials. ``` $filer = Get-VBRFiler -Name "ontap-2" $repository = Get-VBRBackupRepository -Name "Backup Repository 02" $credentials = Get-VBRCredentials Set-VBRFiler -Filer $filer -AccessCredentials $credentials -CacheRepository $repository ``` Perform the following steps: 1. Run the [`Get-VBRFiler`](get-vbrfiler.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$filer` variable. 2. Run the [`Get-VBRBackupRepository`](get-vbrbackuprepository.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$repository` variable. 3. Run the [`Get-VBRCredentials`](get-vbrcredentials.md) cmdlet. Save the result to the `$credentials` variable. 4. Run the `Set-VBRFiler` cmdlet. Specify the following settings: - Set the `$filer` variable as the `Filer` parameter value. - Set the `$credentials` variable as the `AccessCredentials` parameter value. - Set the `$repository` variable as the `CacheRepository` parameter value. ::: ## Related Commands - [`Get-VBRFiler`](get-vbrfiler.md) - [`Get-VBRBackupRepository`](get-vbrbackuprepository.md) - [`Get-VBRCredentials`](get-vbrcredentials.md)