Enterprise vault licenses - how much used
hello all
within enterprise vault admin console is there way we can get utilization report sort of ?
we have reconcilliation going on and i'm asked to prepare report. please help
Hello,
Be advised that as far as EV is concerned, you pay a license for an active USER mailbox.
Groupmailboxes, or mailboxes that belong to removed users, which are still archive, do not count.
We use the below query to determine the number of active users:
SELECT DISTINCT @NrUsers=COUNT(MbxNTUser)
FROM ExchangeMailboxEntry
WHERE (MbxArchivingState = 1)
and mbxdisplayname not like 'zz%'
and legacymbxdn not like '%/cn=mbx%'
and mbxdisplayname not like '%removed%'Explanation:
zz% are mailboxes that belong to service accounts, or the Journal mailboxes
%cn=mbx% are mailboxes having a legacymbxdn starting with mbx, which are group-mailboxes
%removed% in the mbxdisplayname indicates a removed user (ie an inactive mailbox)
We have a huge number of archives, but the actual live archives (ie users) is about half of this.