Veritas Enterprise Vault™ PowerShell Cmdlets
- Introducing the Enterprise Vault PowerShell cmdlets
- Archiving: Exchange
- Archiving: FSA
- Archiving: Skype for Business
- Archiving: SMTP
- Backup
- Classification
- Databases
- IMAP access
- Indexing
- Records management
- Retention plans
- Roles-based administration
- Sites and servers
- Tasks and services
- Vault stores and archives
Get-EVDatabaseFileInfo
Get-EVDatabaseFileInfo returns database file and disk space information for the Enterprise Vault databases on the current Enterprise Vault server.
Get-EVDatabaseFileInfo is provided by Symantec.EnterpriseVault.PowerShell.Core.dll, which is not imported automatically by the Enterprise Vault Management Shell. You must import this DLL module.
See Importing modules.
Get-EVDatabaseFileInfo [-DatabaseType] <String> [<CommonParameters>]
Get-EVDatabaseFileInfo [-DatabaseType] <String> [-EntryId] <String> [-StorageServiceEntryId] <String> [<CommonParameters>]
Table: Get-EVDatabaseFileInfo properties
Parameter | Description |
---|---|
-DatabaseType | EVDatabaseFileInfo. The type of database for which you want details. You can specify any of the following:
|
-EntryID | To find the values for EntryId you can use the Get-EVStorageDatabase cmdlet. |
-StorageServiceEntryId | To find the value for StorageServiceEntryId you can use the Get-EVStorageDatabase cmdlet. |
Get-EVDatabaseFileInfo -DatabaseType Directory
Returns database file and disk space information for the Enterprise Vault Directory database.
Get-EVDatabaseFileInfo -DatabaseType VaultStore -EntryId 21E...08002B30909D -StorageServiceEntryId 21E...08002B30309D
Returns the database file and disk space information for a specific vault store database. The command specifies the Storage service to use to obtain the information.
To find the values for EntryId and StorageServiceEntryId you can use the Get-EVStorageDatabase cmdlet.
Table: Get-EVDatabaseFileInfo properties lists the properties that are available.
Table: Get-EVDatabaseFileInfo properties
Name | Type | Description |
---|---|---|
DatabaseName | String | The name of the Enterprise Vault database. For example, "EnterpriseVaultDirectory". |
FileType | EVDatabaseType | One of the following: "Log", "Data". |
HoursSinceLastBackup | Int32 | The number of hours since the file was last backed up. |
LastBackupDate | DateTime | The date and time when the file was last backed up. This value is null if the file has never been backed up. |
LogicalFileName | String | The logical file name. |
PhysicalFileName | String | The full path to the physical file. |
TotalQuotaGBytesAvailable | Double | The total space available, in gigabytes. This value can be null. |
TotalQuotaGBytesFree | Double | The amount of unused space, in gigabytes. This value can be null. |
TotalQuotaGBytesUsed | Double | The amount of used space, in gigabytes. This value can be null. |
See Get-EVDatabase.