Question 1
Weekly, we receive a hard drive that contains around 20gb of images and a corresponding .lst file. I've created a batch script to check and see if the hard drive is present, if it is, it copies the files to the local computer and to a network backup. Then it launches the Import Agent Service, which identifies the new .lst that was copied to its monitored folder, and begins processing those documents. I'd then like to force the Import Agent Service back into a stopped state. The problem is, I can't 'guesstimate' when IA will complete its processing. Is there a way to invoke IA via script (maybe with some specific triggers?) that will allow the batch file to halt until IA has completed its processing? Ideally it'd work like this:
Is hard drive present?
If so, copy files to local drive.
Then, copy files to network archive.
Launch Import Agent Service.
Wait for IA to complete.
Stop Import Agent Service.
Exit Script.
Question 2:
Where on the system does IA store the profiles that you configure through its GUI?
Thanks in advance to ANYONE with suggestions on Q1