Adalanche Software Shop

For more information on editions, you can take a look at the feature matrix. If you're in doubt, feel free to contact us via email.
License is tied to Active Directory domain

This license allows you to analyze the Active Directories in use in your company. The license is tied to one named domain, but you're allowed to use it with any trusted or trusting domain, as long as it happens together with this named domain.

If you're unsure about what your current default naming context is, you can use this PowerShell code to get it:

Get-ADDomain | Select DistinguishedName,DomainSID

Enter the distinguished name in the field above (dc=contoso,dc=com or similar). Make sure to get this right! If your default domain naming context only consists of one entry (dc=domain), you'll need to provide your domain SID instead (S-1-5-21-x-y-z).

License limits are enforced

This license has an upper limit to active accounts in the Active Directories being analyzed.

An active account is an enabled user or computer account which has logged in during the last 90 days.

If you're unsure how many active accounts you have, you can use this PowerShell code to get it:

Get-ADObject -LDAPFilter "(&(|(objectClass=computer)(objectClass=person))(!userAccountControl:1.2.840.113556.1.4.803:=2))" -Property LastLogonTimeStamp | Where-object {[datetime]::FromFileTime($_.LastLogonTimeStamp) -gt (Get-Date).AddDays(-90)} | Measure | Select Count

The account limit is the total sum of all accounts being analyzed across all domains, so if you want to analyze a foreign trusted domain this also needs to be licensed.

Adalanche allows you to run with a reasonable overcommitment on the account limit, but will issue a warning stating that you're voilating the license.