web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

No record found.

Community site session details

Community site session details

Session Id :
Dynamics 365 Community / Blogs / That NAV Guy / D365 Business Central : Ena...

D365 Business Central : Enable Job Queue in Docker Container

Teddy Herryanto (That NAV Guy) Profile Picture Teddy Herryanto (Th... 14,284 Super User 2025 Season 2

If you’re running the Job Queue in a Docker container for Microsoft Dynamics 365 Business Central and you notice that it’s not doing anything, it could be because the Task Scheduler isn’t enabled in the container. This issue can be resolved by running the following PowerShell command to enable the Task Scheduler and restart the container.

$containerName = "BC21"
Invoke-ScriptInNavContainer -containername $containerName -scriptblock {
    Set-NavServerConfiguration -ServerInstance BC -KeyName EnableTaskScheduler -KeyValue true
    Set-NavServerInstance -ServerInstance BC -restart
}

In the above command, “BC21” is the name of the container that you want to enable the Task Scheduler for. Replace this with the name of your own container.

The post D365 Business Central : Enable Job Queue in Docker Container appeared first on That NAV Guy.


This was originally posted here.

Comments

*This post is locked for comments