cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
logesh1402
Level 3

How to get number of running instances of IsCmdBld.exe

Jump to solution

Hi,

We deployed Installshield SAB in our automation servers. Installshield documentation implies the command line builder(IScmdBuild.exe) could build only 5 projects at a instance.  Is there any options to query number of running instances from IScmdBuild.exe ? 

 

Any help is appreciated.

@Jenifer 

0 Kudos
(1) Solution
Jenifer
Flexera Alumni

Hi @logesh1402 ,

 

How about retrieving number of running instances via powershell-cmdlet?

(Get-Process 'IScmdBuild').count

It will return number of running instances,you can execute in your preferred way!!

By The Way there is no in-built way from Installshield.

 

Thanks,

Jenifer

View solution in original post

0 Kudos
(2) Replies
Jenifer
Flexera Alumni

Hi @logesh1402 ,

 

How about retrieving number of running instances via powershell-cmdlet?

(Get-Process 'IScmdBuild').count

It will return number of running instances,you can execute in your preferred way!!

By The Way there is no in-built way from Installshield.

 

Thanks,

Jenifer

0 Kudos

Oh! I thought installshield could have in-built way. Thanks a lot for your quick help.

0 Kudos