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
Set-EVIMAPServerDisabled
Set-EVIMAPServerDisabled disables the specified server for IMAP and stops the IMAP server.
Set-EVIMAPServerDisabled is provided by the snap-in Symantec.EnterpriseVault.PowerShell.AdminAPI.dll
.
Set-EVIMAPServerDisabled -ComputerNameAlternate [<CommonParameters>]
Table: Set-EVIMAPServerDisabled parameters
Parameter | Description |
---|---|
-ComputerNameAlternate (required) | The alias for the Enterprise Vault server on which you want to stop and disable the IMAP server. |
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.
Set-EVIMAPServerDisabled ACME_LAB_1
Finds the Enterprise Vault server with the Computer name 'ACME_LAB_1' and disables it for IMAP, stopping the IMAP server in the process.
There is a confirmation message on completion.
See Get-EVComputers.
See Get-EVIMAPUsers.