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-EVComputers
Get-EVComputers returns the collection of computers listed in the ComputerEntry table of the Directory database.
Get-EVComputers is provided by Symantec.EnterpriseVault.PowerShell.AdminAPI.dll, which is loaded by the Enterprise Vault Management Shell.
Get-EVComputers [<CommonParameters>]
PowerShell common parameters only.
Get-EVComputers
Returns the collection of computers listed in the ComputerEntry table of the Directory database.
Get-EVComputers | Where-Object {$_.EnabledForIMAP -eq 1} | ForEach-Object {Set-EVIMAPServerDisabled $_.ComputerNameAlternate}
Finds all Enterprise Vault servers that are enabled for IMAP and disables each one in turn, stopping the IMAP server in the process.
Table: Get_EVComputers properties lists the properties that are available.
Table: Get_EVComputers properties
Name | Type | Description |
---|---|---|
ComputerIdentity | Int32 | An Enterprise Vault unique identifier for this server. |
ComputerName | String | The computer name. |
ComputerNameAlternate | String | The computer alternate name. |
EnabledForIMAP | Boolean | Indicates whether the server has been enabled for IMAP. Possible values $true (server is enabled for IMAP), $false (server is not enabled for IMAP), null (server has never been enabled for IMAP). |
IMAPEndPointEntryId | String | The IMAP Endpoint Entry Id. |
IMAPEndpointName | String | The IMAP Endpoint name. |