HomeGuidesRecipesAPI
HomeGuidesAPILog In

Install Scheduler as a Windows Service

The Infiniti Scheduler can be installed as a Windows Service on any Windows machine with access to the Infiniti database. It is usually installed on the same web server where Infiniti Produce is installed.

Navigate to the IntelledoxScheduler folder on the Infiniti web server. For example, C:\inetpub\wwwroot\Infiniti\IntelledoxScheduler

Open the IntelledoxScheduler.exe.config file in a text editor and set the connection string property to point to the Infiniti database. This should be the same as the connection string defined in the configuration of Manage and Produce web applications.

Launch Command Prompt as an administrator.

Enter the following command to install the service, replacing {SchedulerPath} for the actual path to the Infiniti Scheduler

%windir%\system32\sc create IntelledoxScheduler binPath= {SchedulerPath}\IntelledoxScheduler.exe start= auto

%windir%\system32\sc create IntelledoxScheduler binPath= C:\inetpub\wwwroot\Infiniti\IntelledoxScheduler\IntelledoxScheduler.exe start=auto

Enter the following command to start, stop or uninstall the service

%windir%\system32\net start IntelledoxScheduler
%windir%\system32\net stop IntelledoxScheduler
%windir%\system32\sc delete IntelledoxScheduler
733

The Scheduler service can also be maintained in the Services application.

1153

📘

Install Multiple Copies of the Scheduler

It is possible to install multiple versions of the Infiniti Scheduler on the same web server, particularity useful when one web server hosts multiple Infiniti Environments by changing the name used from ‘IntelledoxScheduler’ to another name, e.g. ‘IntelledoxScheduler_EnvironmentName’.
Please note that if you change the name, the upgrade process will not be able to automatically stop before it starts or restart the service after it completes. In this case you must manually stop the service before upgrade, and then restart the service after upgrade.