The service can process files in multiple input folders. It is possible to control the behavior using a script saved in the ScanToPDF application folder. This provides flexibility over which document profiles are processed and in which order.
The script is a text file called ScanToPDFService.scp
Example Script Commands
Example 1
ProcessAllDocumentProfiles()
This would instruct the service to process each configured document profile in sequence
Example 2
DocumentProfileName='Accounts'
QueueCommand("scan")
This would instruct the service to process only the Accounts document profile
Example 3
DocumentProfileName='Accounts'
QueueCommand("scan")
Thread.Sleep(5000)
DocumentProfileName='Sales'
QueueCommand("scan")
This would instruct the service to process the Accounts document profile, sleep for 5 seconds and then process the Sales document profiles in turn. It will then repeat the process