cancel
Showing results for 
Search instead for 
Did you mean: 

Number of avaiable licenses - EV 8.0.3

Neil1234
Level 2

I would like to know how to find out how many user licenses are available to be used.

Under reporting I can see the number of licenses that we are currently using "Total number of Active Archives", but don't know how many we are able to use before we need to buy additional licenses.

Is there an eventid I should be looking for, or is there a powershell command that will give me an answer?

Many thanks in advance.

1 ACCEPTED SOLUTION

Accepted Solutions

MichelZ
Level 6
Partner Accredited Certified

This is kind a wrong guys.
You can have 1000 archives, but only needing one single license.

In Enterprise Vault, it is based on "active users", and only on "human users".
System Mailbox archives do not count, Group Mailbox archives do not count.

It is not that easy to get a real number.

A good start is to count all your employees who happen to have an archive.

As to find out on how many licenses you have purchased, you should be able to find a License Certificate from Symantec where it is noted down.

Enterprise Vault does NOT track licensing usage, and does not enforce any licensing counts.

Cheers


cloudficient - EV Migration, creators of EVComplete.

View solution in original post

4 REPLIES 4

WiTSend
Level 6
Partner

You'll need to check with your purchasing/sales rep to see how many licenses you purchased.  EV operates on an honor system and does not track how many licenses are being "used".

LCT
Level 6
Accredited Certified

SYMC does an audit based on the SQL below (change the appropriate details to match your environment):

use EnterpriseVaultDirectory

select vaultname, vaultentryid

from vaultentryview

where VaultEntryID IN ( Select distinct(ArchivePointID)

from EVExchange_VaultStore01.dbo.saveset s, EVExchange_VaultStore01.dbo.archivepoint a

where s.archiveddate Between '2008-01-01' and '2011-10-17' and

s.ArchivePointIdentity = a.ArchivePointIdentity )

Hope that helps.

MichelZ
Level 6
Partner Accredited Certified

This is kind a wrong guys.
You can have 1000 archives, but only needing one single license.

In Enterprise Vault, it is based on "active users", and only on "human users".
System Mailbox archives do not count, Group Mailbox archives do not count.

It is not that easy to get a real number.

A good start is to count all your employees who happen to have an archive.

As to find out on how many licenses you have purchased, you should be able to find a License Certificate from Symantec where it is noted down.

Enterprise Vault does NOT track licensing usage, and does not enforce any licensing counts.

Cheers


cloudficient - EV Migration, creators of EVComplete.

Neil1234
Level 2

Thanks for your help guys...