How to create new archive after deleting
Hi,
I have deleted a users archive after he was unable to open outlook with the EV add in enabled. I would now like to create a new archive for that mailbox bt when I select to enable mailbox it doe not show in the list. I hav removed the user from the EV provisioning AD goup we have and added him back in and ran the provisioning task. Can you advise what I should do from here?
Thanks
Hi Johnha1981,
The first "gotcha" will sound silly, but did you click the radio button for "Disabled Mailboxes" in the Enable Mailbox Wizard? Always have to sanity check that.
If it's still not showing there, then check the user's row in the ExchangeMailboxEntry (EME) table. The MbxExchangeState column dictates if a mailbox should show in that wizard; 0 means normal, 1 means AD-disabled, and 2 means it's hidden from the GAL. Only a value of 0 will allow mailboxes to show up there. If you don't want to go chasing down why the mailbox doesn't show (research if it's hidden, or something changed with the user's AD account groups, etc), then you could just update that row like this:
USE EnterpriseVaultDirectory
UPDATE ExchangeMailboxEntry
SET MbxExchangeState = '0' WHERE MbxDisplayName = '(paste in user's maibox display name)'Just note that the next time provisioning runs, it'll change that value back to whatever the environment tells it to; as in '2' if it's hidden, for example. This article https://www.veritas.com/support/en_US/article.000031333 kind of touches on why it works that way. Hope that helps!