Please enter search query.
Search <book_title>...
Enterprise Vault™ Utilities
Last Published:
2018-03-29
Product(s):
Enterprise Vault (12.3)
- About this guide
- ArchivePoints
- Audit Viewer
- Backtrace
- CenteraPing
- Domino Archive Exporter
- Domino Profile Document Tool
- Domino Retention Plan Tool
- DTrace
- EVDominoExchangeMigration Tool
- Running the EVDominoExchangeMigration tool
- EVDuplicateCleaner
- EVEARemovalUtility
- EVFSASetRightsAndPermissions
- EVrights
- EVservice
- EVSPShortcutManager
- EVSVR
- About EVSVR
- About the EVSVR operation settings
- Using the output from one EVSVR operation as input for another operation
- Viewing the EVSVR output log file
- Running EVSVR in interactive mode
- FSARunNow
- FSAUndelete
- FSAUtility
- NTFS to Centera Migration
- Permissions Browser
- Policy Manager (EVPM)
- Sections and keynames in Policy Manager initialization file
- Policy Manager initialization file examples
- About using the Provisioning API to run Policy Manager scripts
- ResetEVClient
- Vault Store Usage Reporter
Example provisioning API Policy Manager script
' ' Enable a mailbox ' Dim Enabler Set Enabler = CreateObject("EnterpriseVault.ExchangeArchivePoint") Enabler.Directory = "MACHINE1" Enabler.Site = "site1" '(Entry Id or Site Name) Enabler.ExchangeServer = "DITTO" '(Entry Id or Exchange Name) Enabler.SystemMailbox = "EnterpriseVault-DITTO@evexample.local" Enabler.MailboxDN = "/o=Eng2000/ou=First Administrative Group/cn=Recipients/cn=Bruiser" Enabler.VaultStore = "VaultStoreMain" '(Entry Id or Vault Store Name) Enabler.RetentionCategory = "Business" '(Entry Id or Retention Category Name) Enabler.IndexingService = "MACHINE1" Enabler.Enable ' ' Disable a mailbox ' Dim Enabler Set Enabler = CreateObject("EnterpriseVault.ExchangeArchivePoint") Enabler.Directory = "MACHINE1" Enabler.Site = "site1" '(Entry Id or Site Name) Enabler.ExchangeServer = "DITTO" '(Entry Id or Exchange Name) Enabler.SystemMailbox = "EnterpriseVault-DITTO@evexample.local" Enabler.MailboxDN = "/o=Eng2000/ou=First Administrative Group/cn=Recipients/cn=Bruiser" Enabler.Disable
After the script has been run, the read-only properties ReportText and LastScript are available to return information on the script.