Enterprise Vault™ Administrator's Guide
- About this guide
- Managing administrator security
- Roles-based administration
- Working with predefined RBA roles
- Customizing RBA roles
- Day-to-day administration
- About Exchange mailbox archiving reports
- About starting or stopping tasks or services
- Monitoring journal mailboxes
- About monitoring disks
- About maintaining the SQL databases
- Using SQL AlwaysOn availability groups
- About managing vault store groups and sharing
- About managing safety copies
- About managing partition rollover
- About expiry and deletion
- Working with retention categories and retention plans
- Setting up retention folders
- Enabling archiving for new mailboxes
- About moving archives
- How Move Archive works
- About moving mailbox archives within a site
- About moving mailbox archives between sites
- About configuring Move Archive
- Running Move Archive
- Monitoring Move Archive
- PowerShell cmdlets for managing archives
- Using Enterprise Vault for records management
- Setting the default record type for users
- Common configuration scenarios
- Searching archives for items marked as records
- Automatically filtering events
- Managing indexes
- About the indexing wizards
- Managing indexing exclusions
- About the indexing PowerShell cmdlets
- Advanced Domino mailbox and desktop policy settings
- Editing the advanced settings for Domino mailbox and desktop policy
- Domino mailbox policy advanced settings
- Archiving General: Domino mailbox policy
- Archiving General: Domino mailbox policy
- Domino desktop policy advanced settings
- Advanced Exchange mailbox and desktop policy settings
- Editing the advanced Exchange mailbox and desktop settings
- Exchange mailbox policy advanced settings
- Archiving General (Exchange mailbox policy advanced settings)
- Archiving General (Exchange mailbox policy advanced settings)
- Exchange desktop policy advanced settings
- Office Mail App (Exchange desktop policy advanced settings)
- Outlook (Exchange desktop policy advanced settings)
- OWA versions before 2013 (Exchange desktop policy advanced settings)
- Vault Cache (Exchange desktop policy advanced settings)
- Virtual Vault (Exchange desktop policy advanced settings)
- Advanced Exchange journal policy settings
- Archiving General (Exchange journal policy advanced settings)
- Advanced Exchange public folder policy settings
- Archiving General (Exchange public folder policy advanced settings)
- Advanced SMTP policy settings
- Site properties advanced settings
- Editing site properties advanced settings
- Site properties advanced settings
- Content Conversion (site properties advanced settings)
- File System Archiving (site properties advanced settings)
- IMAP (site properties advanced settings)
- Indexing (site properties advanced settings)
- Skype for Business (site properties advanced settings)
- SQL Server (site properties advanced settings)
- SMTP (site properties advanced settings)
- Storage (site properties advanced settings)
- Content Conversion (site properties advanced settings)
- Computer properties advanced settings
- Editing computer properties advanced settings
- Computer properties advanced settings
- Agents (computer properties advanced settings)
- IMAP (computer properties advanced settings)
- Indexing (computer properties advanced settings)
- Storage (computer properties advanced settings)
- Task properties advanced settings
- Advanced Personal Store Management properties
- Classification policy advanced settings
- Managing the Storage queue
- Automatic monitoring
- About monitoring using Enterprise Vault Operations Manager
- About monitoring using MOM
- About monitoring using SCOM
- Managing extension content providers
- Exporting archives
- Enterprise Vault message queues
- Customizations and best practice
- Mailbox archiving strategies
- Notes on archiving based on quota or age and quota
- Notes on archiving items from Exchange Server 2010 managed folders
- About performance tuning
- Mailbox archiving strategies
- Failover in a building blocks configuration
- Appendix A. Ports used by Enterprise Vault
- Appendix B. Useful SQL queries
- Appendix C. Troubleshooting
- Installation problems
- Microsoft SQL Server problems
- Server problems
- Client problems
- Problems enabling or processing mailboxes
- Problems with Vault Cache synchronization
- Identifying and resolving Vault Cache issues on the Enterprise Vault server
- Identifying and resolving Vault Cache issues on an end-user computer
- Problems with Enterprise Vault components
- Troubleshooting: All tasks and services
- Troubleshooting: Directory service
- Troubleshooting: Exchange archiving or Journaling tasks
- Troubleshooting: Storage service
- Troubleshooting: Shopping service
- Troubleshooting: Web Access application
- Troubleshooting: All tasks and services
- Techniques to aid troubleshooting
- How to modify registry settings
- About moving an Indexing service
- Appendix D. Enterprise Vault accounts and permissions
Setting the system default filter on Exchange managed folders
One requirement for synchronizing managed content settings is that the Enterprise Vault filter applied to the managed folder must be set to
. If the filter on a managed folder is set to , Enterprise Vault does not apply managed content settings.Custom settings on a managed folder may be inherited, or set with Enterprise Vault Policy Manager.
If necessary, you can use the PowerShell cmdlet Remove-EVExchangeFolderPolicy
to remove all existing custom settings from managed folders. You can then use Policy Manager to set managed folders to use the system default filter.
For information about Policy Manager, see the Utilities Guide.
To remove Policy Manager policies from managed folders
- Start the Enterprise Vault Management Shell.
- In the Enterprise Vault Management Shell window, enter the following command if you want to see detailed Help for
Remove-EVExchangeFolderPolicy
:Get-Help Remove-EVExchangeFolderPolicy -detailed
- Enter the
Remove-EVExchangeFolderPolicy
command with the required parameters.For example:
To remove any Enterprise Vault filter settings from managed folders in a mailbox, enter the following command:
Remove-EVExchangeFolderPolicy -PrimarySMTPAddress user_name@domain -ManagedFolders
Where
user_name@domain
is the name of the mailbox.You can run the following script to remove any Enterprise Vault filter settings from managed folders in all mailboxes on a specified Exchange 2013 or 2010 server.
Run the script in the Enterprise Vault Management Shell window.
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri http://Exchange_server/PowerShell/ -Authentication Kerberos -Credential Exchange_administrator Import-PSSession $Session -CommandName Get-Mailbox $UserList = Get-Mailbox | where-object{$_.ServerName -like "Exchange_server"} foreach($Entry in $UserList) {$Address = $Entry.PrimarySMTPAddress; Remove-EVExchangeFolderPolicy -PrimarySMTPAddress $Address}
Where
Exchange_server
is the name of the Exchange server, and Exchange_administrator the name of the Exchange administrator account.
To set a managed folder to use the system default filter
- Create a Policy Manager initialization file that contains the following [Folder] section:
[Folder] NAME=\Managed Folders\managed_folder filtername = systemdefault overridearchivelocks=true
Where
managed_folder
is the name of the managed folder that you want to use the system default filter. - Run Policy Manager with the initialization file.