Enterprise Vault™ PowerShell Cmdlet
- Enterprise Vault PowerShell Cmdlet 简介
- 归档:Exchange
- 归档:FSA
- Get-EVFSAComputerSettings
- Get-EVFSAFileServer
- Get-EVFSAFolder
- Get-EVFSASiteSettings
- Get-EVFSAVolume
- New-EVFSAFileServer
- New-EVFSAFolder
- New-EVFSAVolume
- Remove-EVFSAFileServer
- Remove-EVFSAFolder
- Remove-EVFSAVolume
- Set-EVFSAComputerSettings
- Set-EVFSAFileServer
- Set-EVFSAFolder
- Set-EVFSASiteSettings
- Set-EVFSAVolume
- 归档:Skype for Business
- 归档:SMTP
- Get-EVSMTPHoldingFolder
- Get-EVSMTPMessageTrackingLogLocation
- Get-EVSMTPPolicy
- Get-EVSMTPServerSettings
- Get-EVSMTPTarget
- New-EVSMTPPolicy
- New-EVSMTPServerSettings
- New-EVSMTPTarget
- Remove-EVSMTPPolicy
- Remove-EVSMTPTarget
- Set-EVSMTPMessageTrackingLogLocation
- Set-EVSMTPPolicy
- Set-EVSMTPServerSettings
- Set-EVSMTPTarget
- Sync-EVSMTPServerSettings
- 备份
- Get-EVIndexSnapshotLocationBackupMode
- Set-EVIndexSnapshotLocationBackupMode
- Clear-EVIndexSnapshotLocationBackupMode
- Get-IndexLocationBackupMode
- Set-IndexLocationBackupMode
- Clear-IndexLocationBackUpMode
- Get-VaultStoreBackupMode
- Set-VaultStoreBackupMode
- Clear-VaultStoreBackupMode
- Set-EVIndexSnapshotLocation
- Get-EVIndexSnapshotLocation
- Remove-EVIndexSnapshotLocation
- New-EVIndexSnapshot
- Get-EVIndexSnapshot
- Remove-EVIndexSnapshot
- Restore-EVIndexSnapshot
- Get-EVIndexSnapshotRepository
- Remove-EVIndexSnapshotRepository
- Export-EVIndexData
- Import-EVIndexData
- 分类
- Disable-EVClassification
- Get-EVClassificationFCITags
- Get-EVClassificationPolicy
- Get-EVClassificationStatus
- Get-EVClassificationTestMode
- Get-EVClassificationVICTags
- Import-EVClassificationFCIRules
- Initialize-EVClassificationVIC
- Set-EVClassificationVICFIPSMode
- New-EVClassificationPolicy
- Publish-EVClassificationFCIRules
- Remove-EVClassificationPolicy
- Set-EVClassificationPolicy
- Set-EVClassificationTestMode
- 数据库
- IMAP 访问
- 索引
- 记录管理
- 保留计划
- 基于角色的管理
- 站点和服务器
- 任务和服务
- 保管库存储和归档
Get-EVElasticsearchIndex
Get-EVElasticsearchIndex 会从 Elasticsearch 中检索指定归档的所有 Elasticsearch 索引的详细信息。
Get-EVElasticsearchIndex 由 Enterprise Vault Management Shell 加载的 Symantec.EnterpriseVault.PowerShell.AdminAPI.dll 提供。
Get-EVElasticsearchIndex -ArchiveId <String> [-IndexState <String>] [<CommonParameters>]
表:Get-EVElasticsearchIndex 参数
|
参数 |
描述 |
|---|---|
|
-ArchiveId(必需) |
要检索索引详细信息的归档的 ID。 |
|
-IndexState |
要用于过滤结果的索引的状态(打开/关闭)。 |
C:\PS> Get-EVElasticsearchIndex -ArchiveId "116C02E87F248354DA9E9FECEDA650C721110000VJ-SQL.QA.COM"
列出归档“116C02E87F248354DA9E9FECEDA650C721110000VJ-SQL.QA.COM”的所有 Elasticsearch 索引。
C:\PS> Get-EVArchive | Get-EVElasticsearchIndex
列出 Get-EVArchive 命令返回的归档的所有 Elasticsearch 索引。
C:\PS> Get-EVElasticsearchIndex -ArchiveId "116C02E87F248354DA9E9FECEDA650C721110000VJ-SQL.QA.COM" -IndexState "Open"
列出指定了归档 ID 的归档的所有打开的 Elasticsearch 索引。
C:\PS> Get-EVArchive | Get-EVElasticsearchIndex -IndexState "Close"
列出 Get-EVArchive 命令返回的归档的所有关闭的 Elasticsearch 索引。
此命令返回 Symantec.EnterpriseVault.PowerShell.AdminAPI.ElasticsearchIndex 类型的对象,其中包含以下属性:
表:Get-EVElasticsearchIndex 属性
|
名称 |
类型 |
描述 |
|---|---|---|
|
ArchiveId |
字符串 |
Elasticsearch 索引的归档的 ID。 |
|
IndexName |
字符串 |
与归档 ID 关联的 Elasticsearch 索引的名称。 |
|
IndexState |
字符串 |
Elasticsearch 索引的状态。 |
|
IndexStatus |
ElasticsearchIndexStatus 枚举值 |
索引的运行状况。 |
|
IndexedItems |
整数 |
索引中的项目数。 |
|
IndexSizeInMB |
整数 |
索引的大小 (MB)。 |
|
ShardsCount |
整数 |
索引中的分片数。 |
|
EVServerEntryId |
字符串 |
Elasticsearch 索引的 Enterprise Vault 索引服务器的 EntryId。 |