Did you ever receive the pop-up: “Your program license does not permit more uses to work simultaneously. Wait until another user has stopped using the program. Contact your system administrator if you want to allow more simultaneous users on your system.”?

Your program license does not permit more uses to work simultaneously. Wait unitl another user has stopped using the program. Contact your system administrator if you want to allow more simultaneous users on your system.

Ok, but who is the ‘another user’ and when does this user stop using the program 🙂 ?

Follow these steps (easy version):

  1. Search another user in your company who is working in Dynamics NAV
  2. Search in Dynamics NAV for Sessions (upper right corner)
  3. Press Yes to continue
  4. You will see a list of all users currently logged in Dynamics NAV

Note: One user can have multiple sessions at the same time, this will be counted as one session.


Follow these steps (advanced version):

  1. Run PowerShell as Administrator
  2. Copy and paste the code below
     
    $NAVID = 100
    Import-module "${env:ProgramFiles}\Microsoft Dynamics NAV\$NAVID\Service\NavAdminTool.ps1" -force -ErrorAction Stop -WarningAction SilentlyContinue -Verbose:$false  | out-null
    $ServerInstances = Get-NAVServerInstance
    foreach ($ServerInstance in $ServerInstances)
    {
        foreach ($Attribute in $ServerInstance.Attributes)
        {
            IF ($Attribute.Name -eq 'ServerInstance')
            {
                $Session += Get-NAVServerSession -ServerInstance $Attribute.Value -ErrorAction SilentlyContinue -WarningAction SilentlyContinue
            }
        }
    }
    IF ($Session)
    {
        $Session | Out-GridView
    }
  3. Check if the $NAVID setting is valid (e.g. 90 = NAV 2016, 100 = NAV 2017)
  4. Execute the code by pressing F5
  5. You will see a list of all users currently logged in Dynamics NAV.

Note: This script shows all loggend users over all NAV Server-instances.

These postings are provided “AS IS” with no warranties and confer no rights.
You assume all risk for your use.