Passing install location to separate silent installer.
I have an installer(A) that calls another installer(B) silently:
File /oname=$PLUGINSDIR\setup.exe "setup.exe"
ExecWait "$PLUGINSDIR\setup.exe /S" $0
The silent installer(B) defaults to "C:\ProgramFiles\MyProgram"
Is it possible to somehow pass a custom install location chosen by the user in installer(A) to installer(B) so that (B) installs at the custom location?
I appreciate the help.