Signifikant Service Stops

Problem

The Signifikant Service stops unexpectedly and tasks controlled by it stops. E.g. scheduled imports of customers stop.

Solution

In some versions, imports have caused stop of service. A quick workaround is to schedule a windows task to restart the service at a regular interval.

  1. Add a script at e.g. D:\Signifikant\Scripts\RestartSignifikantService.cmd
    Content example as below.

  2. Use Windows Task Scheduler to start the script at a regular interval

The following example script will restart the service named “SignifikantImportService”. Please lookup the exact name of the service in the “Services list” and adapt the script accordingly if necessary.

net stop SignifikantImportService && net start SignifikantImportService