0 votes

I have a few questions on licensing.

Which accounts are excluded from the license count? I understand you can exclude users, by OU possibly. I'm more interested in non OU folders (CN's) in AD such as "Microsoft Exchange Systems Objects" such as Monitoring Mailboxes. Also like the Users CN which hosts certain service accounts for $domains. I just want to ensure this could be excluded if they were counted.

Do you have a tool or script that you would use to give an estimate of users that would be licensed. I understand you don't count Expired accounts but wanted a good idea of what our domain would return according to your expectations.

What happens during license validation?

What happens if you go over license count?

by (790 points)

1 Answer

0 votes
by (11.1k points)
selected by
Best answer

Hello,

Which accounts are excluded from the license count? I understand you can exclude users, by OU possibly. I'm more interested in non OU folders (CN's) in AD such as "Microsoft Exchange Systems Objects" such as Monitoring Mailboxes. Also like the Users CN which hosts certain service accounts for $domains. I just want to ensure this could be excluded if they were counted.

Softerra Adaxes is licensed in packages based on the number of enabled and not expired user accounts in all the managed Active Directory domains. If you do not want to manage specific accounts (e.g. service accounts) using Adaxes, you need to add them to the list of unmanaged accounts. Unmanaged user accounts will not be displayed in Adaxes environment and will be ignored during license validation. For information on how to add users to the list of unmanaged accounts, please, have a look at the following help article: https://www.adaxes.com/help/?HowDoI.ManageService.AddUsersToUnmanagedAccounts.html.

Do you have a tool or script that you would use to give an estimate of users that would be licensed. I understand you don't count Expired accounts but wanted a good idea of what our domain would return according to your expectations.

The following PowerShell script outputs the number of all users that are enabled and not expired:


Import-Module ActiveDirectory

$credentials = Get-Credential
$currentDateFileTime = (Get-Date).ToFileTimeUtc()
$users = Get-ADObject -Credential $credentials -LDAPFilter "(&(sAMAccountType=805306368)(!(userAccountControl:1.2.840.113556.1.4.803:=2))(|(!(accountExpires<=$currentDateFileTime))(accountExpires=0)))" -SearchScope Subtree

Write-Host "Total number of enabled and not expired user accounts in domain:" $users.Length

What happens during license validation?

During a license validation Adaxes checks whether the license file can be used with the installed service version and whether the number of users that are active, not expired and not added to the list of unmanaged accounts is not exceeding the number allowed by the license.

What happens if you go over license count?

You will be notified about the license violation and you will have 30 days to correct the violation. After the 30-days period the service will be stopped.

Related questions

0 votes
1 answer

Hi all, Just wondering when Adaxes actually determines the current unmanaged/managed user counts - is it random, scheduled, or a manual thing? Also, does it randomly re-determine ... the script ran successfully every night, so I am not sure here. Cheers all.

asked Sep 22, 2020 by TheLexicon (200 points)
0 votes
1 answer

What is the easiest way to reset the license calculation for ADAXES back to say a new installation? We've unmanaged (manually) a number of accounts and we'd like to add ... that would allow us to simply "start over" in terms of licensing. Thanks in advance.

asked Oct 19, 2016 by VTPatsFan (610 points)
0 votes
1 answer

Hello, How it works if I have multiple accounts in one domain, and other accounts in others domains managed by Adaxes ? Thank you. Regards. Pierre

asked Jun 9, 2021 by pierre.saucourt (40 points)
0 votes
1 answer

Will it use 1 license for an Active Directory user and his azure account or 2 licenses?

asked Nov 7, 2023 by johanpr (80 points)
0 votes
1 answer

I am wondering what the expected behavior is, and what troubleshooting can be done, for this issue: We have a few tenants listed under Cloud Services &gt; Office 365 We ... know, but they don't have access to force the license update themselves. Thanks, Jason

asked Jan 9, 2019 by Jasonmh (540 points)
3,346 questions
3,047 answers
7,768 comments
544,964 users