Veritas Enterprise Vault™ PowerShell Cmdlets
Get-EVFSAVolume
Get-EVFSAVolume retrieves details of all the volumes set up for File System Archiving in an Enterprise Vault site. This list can be filtered based on a file server and a volume name.
Get-EVFSAVolume is provided by Symantec.EnterpriseVault.PowerShell.AdminAPI.dll, which is loaded by the Enterprise Vault Management Shell.
Get-EVFSAVolume [-SiteId <string>] [<CommonParameters>]
Get-EVFSAVolume [-SiteId <string>] [-FileServerName] <string> [[-Name] <string>] [<CommonParameters>]
Get-EVFSAVolume [-SiteId <string>] -FileServerId <string> [[-Name] <string>] [<CommonParameters>]
Table: Get-EVFSAVolume parameters
Parameter | Description |
---|---|
-SiteId (required) | The ID of the Enterprise Vault site under which the file server is configured. If you omit this parameter, Get-EVFSAVolume uses the ID of the site of the Enterprise Vault Server where the cmdlet is running. You can use Get-EVSite to obtain the site ID. |
-FileServerName (required) | The fully-qualified DNS name or the alias of the file server target configured under the Enterprise Vault site, which hosts the volume share. |
-FileServerId (required) | The ID of the file server that hosts the volume share. |
-Name | The name of a share folder added as an FSA volume. |
Get-EVFSAVolume - SiteId 198…example.com
Retrieves all the volumes hosted on all the file servers in the specified Enterprise Vault site.
Get-EVFSAVolume - SiteId 198…example.com -FileServerId 1FB…example.com
Retrieves all the volumes hosted on the file server with ID '1FB…example.com'.
Get-EVFSAVolume - SiteId 198…example.com -FileServerId 1FB…example.com -Name Sales
Retrieves the properties of the volume 'Sales' hosted on the file server with ID '1FB…example.com'.
Get-EVFSAVolume - SiteId 198…example.com -FileServerName 'WindowsFiler.example.com'
Retrieves all the volumes hosted on the file server with the name 'WindowsFiler.example.com'.
Get-EVFSAVolume - SiteId 198…example.com - FileServerName \\WindowsFiler
Retrieves all the volumes hosted on the file server with the name '\\WindowsFiler'.
Get-EVFSAVolume - SiteId 198…example.com -FileServerName 'WindowsFiler.example.com' -Name Marketing
Retrieves the properties of the volume 'Marketing' hosted on the file server with the name 'WindowsFiler.example.com'.
Table: Get-EVFSAVolume properties lists the properties that are available.
Table: Get-EVFSAVolume properties
Name | Type | Description |
---|---|---|
VolumeName | String | The name of the FSA volume. |
VolumeId | String | The ID of the FSA volume. |
FileServerName | String | The name of the file server that hosts the volume as configured in the Enterprise Vault Site. |
FileServerId | String | The ID of the file server that hosts the volume share. |
VaultStoreName | String | The name of the vault store that is used to store files archived from this volume. |
VaultStoreId | String | The ID of the vault store that is used to store files archived from this volume. |
TaskName | String | The name of the File System Archiving task that is used to process this volume. |
TaskId | String | The ID of the File System Archiving task that is used to process this volume. |
PolicyName | String | The name of the file system archiving volume policy that is used when archiving from this volume. |
PolicyId | String | The ID of the file system archiving policy that is used when archiving from this volume. |
DisableArchiving | SwitchParameter | Specifies whether file archiving from this volume is disabled. |
PassthroughRecall | SwitchParameter | Specifies whether pass-through recall for this volume is enabled. |
SiteId | String | The ID of the Enterprise Vault site under which the volume is configured. |
See New-EVFSAVolume.
See Remove-EVFSAVolume.
See Set-EVFSAVolume.