How to install Job Management Suite on premises

  1. Make sure to have a Dynamics 365 Business Central installation up and running including a database. The below example shows how to create a CRONUS demo environment.
  2. Download the latest Job Management Suite package from:
  3. Open PowerShell ISE and run as Administrator.
    • Import the JMS script in PowerShell and run the following sections

Install the NAV Modules:

Import-Module "C:\Program Files\Microsoft Dynamics 365 Business Central\220\Service\Microsoft.Dynamics.Nav.Management.psm1"
Import-Module "C:\Program Files\Microsoft Dynamics 365 Business Central\220\Service\NavAdminTool.ps1"

Update the variables (replace parts as required):

$apps = "TI-Common,TI-Advanced Job Management,TI-Resource Management,TI-Manufacturing and Service Integration" 
(When only installing AJM, remove RM from this list)
$serverInstance = 'BC215'
$buildArtifactFolder = "C:\IEMOnPrem\21.4.84356.0" (The downloaded and unzipped JMS package)
$appsSplit = $apps.Split(',')
$i = $appsSplit.Count 

When updating an existing installation, first uninstall the extensions:

Do{
    $i--
  Write-Host "Uninstall & Unpublish $($appsSplit[$i])"

  $installedAppVersion = Get-NAVAppInfo -ServerInstance $serverInstance|Where-Object { $_.Name -eq $appsSplit[$i] }|%{"$($_.Version.Major).$($_.Version.Minor).$($_.Version.Build).$($_.Version.Revision)"}
  Uninstall-NAVApp -Name $appsSplit[$i] -ServerInstance $serverInstance -Version $installedAppVersion
  Unpublish-NAVApp -Name $appsSplit[$i] -ServerInstance $serverInstance -Version $installedAppVersion 
}
Until($i -eq 0) 

Install, or update, the extensions:

$apps.Split(',') | ForEach-Object {
    $appName = $_
    $AllAppFiles = Get-ChildItem -Path $buildArtifactFolder -Filter "*.app" -Recurse
    foreach ($AllAppFile in $AllAppFiles) {if ((Get-NAVAppInfo -Path $AllAppFile.FullName |Select-Object -expand Name) -eq $appName){$appFileName = $AllAppFile.FullName} }
    Write-Host "Install $_ ($appFileName)"
    $newAppVersion = Get-NAVAppInfo -Path $appFileName|%{"$($_.Version.Major).$($_.Version.Minor).$($_.Version.Build).$($_.Version.Revision)"}

    # for initial install use Install-NAVApp, for updates use Start-NAVAppDataUpgrade
    Publish-NAVApp -Path $appFileName -ServerInstance $serverInstance
    Sync-NAVApp -Name $appName -ServerInstance $serverInstance -Version $newAppVersion
    #Start-NAVAppDataUpgrade -Name $appName -ServerInstance $serverInstance -Version $newAppVersion
    Install-NAVApp -Name $appName -ServerInstance $serverInstance -Version $newAppVersion
}

Once completed you must find the following entries in extension management:

Name Publisher Version Is Installed Published As
TI-Advanced Job Management To-Increase B.V. v.21.0.86838.0 v Global
TI-Common To-Increase B.V. v.19.0.83403.0 v Global
TI-Manufacturing and Service Integration To-Increase B.V. v.21.0.86838.0 v Global
TI-Resource Management To-Increase B.V. v.21.0.86838.0 v Global

For access to the JMS functionality change to the JMS-Project Manager role center. To extend the Cronus demo data for AJM/RM/MFG import and install the configuration packages from: RapidStart-W1.ENU.TI-JMS-CRONUS.zip.