I apologize, I feel as though I did not word my question correctly.
I am installing an application that has two install parts to it, first part is the JuniperSetupServiceInstaller.exe and the second part is NCInst64.exe
When I use the RunWait command on JuniperSetupServiceInstaller.exe /S, it works perfectly fine, even without the @SW_Hide flag.
In my code, I have RunWait(~~JuniperSetupServiceInstaller.exe /S") and follow by this line, I have RunWait(~~NCInst64.exe /S")
Is there for any reason why the NCInst64.exe /S isn't even launching when I run this code?
If for some reason I try to run JuniperSetupServiceInstaller.exe twice, it will go through but not NCInst64.exe..
Also, where is the correct place to place the @SW_Hide?
Would it be
RunWait("C:ACMScacheJuniper_EVPN_Client_17087Juniper_EVPN_Client_17087JuniperSetupServiceInstaller.exe /S", "", "", @SW_Hide)
or
RunWait("C:ACMScacheJuniper_EVPN_Client_17087Juniper_EVPN_Client_17087JuniperSetupServiceInstaller.exe /S", @SW_Hide)
Thank you
-ET