PDA

View Full Version : Time between successive patches


Gerald Kellermann
09-24-2007, 09:25 AM
Hi

When two silent patches are started via *.cmd-script shortly one after another, our application goes awry. (it's not the case when the patches are started manually, even via commandline)

My question: Are there any processes working after the main task (the one shown in the taskmanager) ends? And if so, what is it, and how long does it approximately should take?

regards
Gerald

Lorne
09-24-2007, 09:49 AM
Like many self-extracting installers and patches, Visual Patch uses a launcher stub to extract data from the embedded archive. By default that launcher returns right away, however you can use the /W command line option to make it wait until the patch is finished before returning.

In order to perform a series of patches in sequence, just pass /W to each patch executable and each launcher will wait until the patch exits before exiting.

Gerald Kellermann
09-25-2007, 01:54 AM
Thanks.

regards Gerald