- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- How to get number of running instances of IsCmdBld.exe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
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.
- Tags:
- installscript
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
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
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
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
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Oh! I thought installshield could have in-built way. Thanks a lot for your quick help.
- Tags:
- t