Running multiple programs at the same time
Hello,
I have this problem:
I use UHARC to compress my files because it gives much better results. I compress the files with uharc and I put the .uha-files and the decompresser in the installer. After installing the .uha-files, I use ExecWait to uncompress the uha-files with the decompresser and this works. But I'd like to decompress 2 or 4 archives at the same time, because most computers have dual-cores and it would be a waste of time to only use 1 core at a time. The problem is that if I use ExecWait, I can only decompress 1 archive at a time, and if use Exec, the installer finishes before everything is decompressed.
So I wonder if there is a way to run multiple programs at the same time, and to wait until every one of them is finished.