You are viewing limited content. For full access, please sign in.

Question

Question

Count of open Laserfiche client windows

asked on May 12, 2014

 I am currently using the client automation tool through Workflow. I am trying to control how many clients get launched. Is there a way to get all the client instances and count them so I don't run into the issue of too many clients being opened at once?

0 0

Answer

SELECTED ANSWER
replied on May 13, 2014

One way is to get the count of 'LF.exe *32' processes (each LF.exe *32 process represents an instance of LF Client open)

0 0

Replies

replied on May 14, 2014

I did that and was able to get the amount of process' at each time. The only issue now is competition when the other workflows that do the similar job are waiting in the queue. They all come in at the same time and since there is a limit as to how many can log in they all fail after that. Though I will have to figure that one out on my own or post another answer topic.

Process[] LFprocess = Process.GetProcessesByName("LF"); //array of processes
LFprocess.Count(); //gets the count of processes

 

2 0
replied on May 13, 2014

Using CAT in/through workflow is not a supported configuration.  You should try to find an alternative solution to achieve your goal.

2 1
You are not allowed to follow up in this post.

Sign in to reply to this post.