Forum Discussion

simonaferrara's avatar
simonaferrara
Frequent Contributor
3 years ago
Solved

Run testedApp for msi - wait till the msi has been completed

Hi,    I have to install an msi; I'm trying to simply do it by using the testedApps, but I'm not finding a way to wait that the msi is finished the installation.  The Run method doesn't wait that ...
  • AlexKaras's avatar
    3 years ago

    Hi Simona,

     

    What if you try WshShell.Run() ?

    E.g.:

    Return = WshShell.Run("msiexec /i /quiet " + msiFileName, 0, true);