Short Description
Rescans NetApp storage volumes.
Applies to
Platform: VMware
Product Edition: Standard, Enterprise, Enterprise Plus
Syntax
Sync-NetAppVolume -Volume <CSanVolume[]> [-WarningAction <ActionPreference>] [-WarningVariable <String>] [<CommonParameters>] |
Detailed Description
This cmdlet rescans selected NetApp storage volumes to synchronize the infrastructure with Veeam Backup & Replication.
Rescanning checks for deleted snapshots and discovers newly created ones.
Veeam Backup & Replication runs rescan automatically every 3 minutes. You can perform rescan manually if you want to display the newly added or deleted snapshots.
To rescan the storage, run Sync-NetAppHost.
Parameters
Parameter | Description | Required | Position | Accept | Accept |
Volume | Specifies the array of the volumes you want to rescan. | True | Named | True (ByValue, | False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information about common parameters, see http://go.microsoft.com/fwlink/p/?LinkID=113216.
Example
This example shows how to rescan the NetApp storage volume.
You will need to perform the following steps:
- Run Get-NetAppVolume to get the storage volume. Save the result to the $volume variable.
- Run Sync-NetAppVolume with the $volume variable.
PS C:\PS> $volume = Get-NetAppVolume -Name "VOL01" PS C:\PS> Sync-NetAppVolume -Volume $volume |
Related Commands