Skip to content

Factory Orchestrator service configuration using appsettings.json

The Factory Orchestrator service has many configurable settings that impact its startup behavior, enabled features, and more. This configuration is easily modified using an appsettings.json file.

The appsettings.json file is checked for in the following locations in order, with the last appsettings.json file found 'winning' if there are conflicts:

  1. The directory where the service executable (Microsoft.FactoryOrchestrator.Service) is located
  2. (Windows only) %DATADRIVE%\TestContent\Container\FactoryOrchestrator
  3. The service log file directory: %ProgramData%\FactoryOrchestrator\ (Windows) or /var/log/FactoryOrchestrator/(Linux)
  4. (Linux only) The /etc/FactoryOrchestrator/ directory

The following table describes each setting and its usage:

Setting name Type Usage 
InitialTaskLists  string Path to a FactoryOrchestratorXML file. The TaskLists in this file are loaded on first boot only; they are NOT run by default unless RunInitialTaskListsOnFirstBoot is set. This file defines the default "first boot" state of the DUT, that is the TaskLists & tasks that are shown in the app UI. See below for more details.
RunInitialTaskListsOnFirstBoot bool If set to "true", the TaskLists defined by InitialTaskLists are run on first boot of the DUT (or the first time the service is run). They are not run on subsquent boots.
FirstBootTasks string Path to a FactoryOrchestratorXML file. These TaskLists are run once, and then "hidden", on the first boot of the DUT (or the first time the service is run). They are not run on subsquent boots. See below for more details.
EveryBootTasks string Path to a FactoryOrchestratorXML file. These TaskLists are run on every boot of the DUT, including first boot. They are then "hidden". See below for more details.
EnableNetworkAccess bool If set to "true", the service will allow connections from clients/apps anywhere on your local network. Defaults to false. See below for more details.
NetworkPort int The network port the service uses to communicate with clients, even local loopback clients. Defaults to 45684.
TaskRunLogFolder string Path of the directory where you want Task run logs saved. This setting is a first run default; it can be overriden at runtime by the SetLogFolder() API. See Tasks and Tasklists for details about the log files for individual Task runs.
AllowedLocalLoopbackApps string Windows only. Semi-colon separated list of Windows app "Package Family Name"(s). The Factory Orchestrator service will enable local loopback on the given apps every boot. Requires "checknetisolation.exe" is found in your %PATH%. See this Windows IoT page for more information.
DisableCommandPromptPage bool If set to "true", the Factory Orchestrator app will not show the "Command prompt" page.
DisableWindowsDevicePortalPage bool Windows only. If set to "true", the Factory Orchestrator app will not show the "Device portal" page.
DisableUWPAppsPage bool Windows only. If set to "true", the Factory Orchestrator app will not show the "UWP apps" page.
DisableManageTasklistsPage bool If set to "true", the Factory Orchestrator app will not show the "Manage TaskLists" page.
DisableFileTransferPage bool If set to "true", the Factory Orchestrator app will not show the "File Transfer" page.
SSLCertificateFile string Path to X509Certificate2 file. If provided the Factory Orchestrator Service will use the provided certificate for ssl encryption to communicate with client.
IpcLogLevel LogLevel enum Sets the logging level for the IPC binaries. If set to "Debug", or lower information about every client API call will be saved to the service log.
DisableContainerSupport bool Windows only. If set to "true", the service will not check for a container running Factory Orchestrator on your PC.

Sample appsettings.json

Here's an example of what a valid appsettings.json file looks like.

{
    "EnableNetworkAccess":"true",
    "NetworkPort":"45000",
    "DisableFileTransferPage":"true",
    "InitialTaskLists":"/etc/InitialTaskLists.xml"
}

Additional details

Network Access

By default, the Factory Orchestrator service only allows client connections from the same device the service is running on (i.e. localhost only). However, service can be configured to allow connections from clients anywhere on your local network, by setting EnableNetworkAccess to "true" in your appsettings.json file.

⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠

WARNING: Please read and understand the following before enabling network access!

⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠

  • ⚠ The service allows any client to connect to it without authentication. Any connected client has full access to the service's computer, including the ability to send or copy files, and/or run any command or program with administrator rights. ⚠ (The service has SSL encryption, but it is server-only, clients are not authenticated.)
  • ⚠ If you configure the service to automatically start, the service is configured to run from boot. Depending on the service & PC configuration it may even be running before a user has logged on to the computer. ⚠
  • ⚠ Once network access is enabled, it will remain enabled until "EnableNetworkAccess" is set to "false" and the service is restarted. ⚠
  • ⚠ The service and client send information over the network in SSL encrypted JSON using TCP. It is vulnerable to man-in-the-middle attacks, as the service defaults to a predefined SSL certificate unless a custom certificate is used. ⚠
  • ⚠ The service currently has minimal logging about what clients are connected to it and what commands each client has executed. ⚠

To check if network access is currently enabled use one of the following:

Firewall configuration

Depending on the configuration of the OS you are using, you may need to configure the firewall to allow the Factory Orchestrator service to communicate over your local network. Factory Orchestrator uses TCP port 54684 for client<->service communication and UDP port 5353 for DNS-SD.

On Windows, run the following command from an Administrator PowerShell window to allow Factory Orchestrator through the Windows firewall:

$FoPath = (Get-CimInstance win32_service | ?{$_.Name -like 'Microsoft.FactoryOrchestrator'}).PathName.replace(' -IsService', ''); netsh advfirewall firewall add rule name="Factory Orchestrator service in" dir=in action=allow program="$FoPath" enable=yes; netsh advfirewall firewall add rule name="Factory Orchestrator service out" dir=out action=allow program="$FoPath" enable=yes

On Ubuntu and many other Linux distros, run the following Bash commands:

sudo ufw allow 45684
sudo ufw allow 5353

If you set a custom network port via the NetworkPort setting, use that port number instead of 45684.

InitialTaskLists, FirstBootTasks, and EveryBootTasks

💡 We are considering reworking InitialTaskLists and *BootTasks, as it is hard to understand the use cases and tradeoffs for each type. 💡

The Factory Orchestrator service looks for certain FactoryOrchestratorXML files when it starts, based on file paths set in the InitialTaskLists, FirstBootTasks, and EveryBootTasks settings. You can use these FactoryOrchestratorXML files to pre-load tasks into Factory Orchestrator (without running them), run tasks the first time a device boots, or run tasks every time a device boots.

These 3 FactoryOrchestratorXML files are executed in the following order:

  1. FirstBootTasks (if it is first boot)
  2. EveryBootTasks
  3. Then finally InitialTaskLists (if it is first boot & RunInitialTaskListsOnFirstBoot is set).

The FirstBootTasks & EveryBootTasks settings are intended to be used for "configuration" & "pre-setup" operations, as they are tracked separately from all other Tasks, and their state is 'hidden' on completion (not show in app UI and not returned by most client APIs). For example, starting a non-critical logger service every boot would be a good use of the EveryBootTasks. On the other hand, InitialTaskLists is intended to be used to setup the "first run" state of Factory Orchestrator. Keep in mind this state is only the "first run" state, it may change as client(s) interact with Factory Orchestrator.

FirstBootTasks & EveryBootTasks have the following 'rules':

  • While you can author normal <Tasks> in the *BootTasks files, <BackgroundTasks> are especially useful, as you can define <BackgroundTasks> which start on boot, are never expected to ever exit, and will run in the background forever (provided TerminateBackgroundTasksOnCompletion="false").
  • When all <Tasks> defined in the *BootTasks FactoryOrchestratorXML files are done executing, the service "resets" and any TaskLists & Tasks defined in thoes 2 files are "hidden". This means that the app UI will only show the TaskLists defined by the InitialTaskLists setting if this is the first boot, and possibly any TaskLists that have been added at runtime by a client (if this isn't the first boot).
  • <TaskLists> defined in the *BootTasks FactoryOrchestratorXML files are only returned by GetTaskListGuids() and GetTaskListSummaries() client methods only while the service is actively executing boot TaskLists. Upon completion of all boot TaskLists, you can only query boot TaskList information via the GetBootTaskListGuids(), & GetBootTaskListSummaries() client methods. You can also query the *BootTasks Tasks and TaskLists directly at any time if you know their GUID using QueryTask(), QueryTaskList(), and QueryTaskRun().
  • The Factory Orchestrator service does not allow certain client commands to run until all <Tasks> (excluding <BackgroundTasks>) defined in the relevant *BootTasks files are done executing. You will get a FactoryOrchestratorBootTasksExecutingException if you call them while the *BootTasks files are running. You can check the FactoryOrchestrator service log file to see if the *BootTasks files are done executing. Or use the IsExecutingBootTasks() client API. Lastly, when the service is running one of the two *BootTasks files, you'll see a warning in the Factory Orchestrator app UI: Service is executing Boot tasks, many functions are disabled until finished or aborted

You can inspect the FactoryOrchestrator service and Task run log files for details about the status and/or results of the *BootTasks FactoryOrchestratorXML files, in "EveryBootTaskLists" & "FirstBootTaskLists" subfolders in the task run log directory.

Factory Orchestrator logs

Factory Orchestrator service log file

The service log file contains details about the operation of the Factory Orchestrator service. It is always found at %ProgramData%\FactoryOrchestrator\FactoryOrchestratorService.log on Windows and /var/log/FactoryOrchestrator/FactoryOrchestratorService.log on Linux. Inspect this log for details about the service's operation.

Factory Orchestrator Task log files

See Tasks and Tasklists for details about the log files for individual Task runs.