setup.exe /? reports that "All remaining command line arguments will be passed to the application install." Does this mean that URL parameters can be passed to the bootstrapper and they will be forwarded to the deployment manifest? If yes, what is the correct syntax of passing the parameters to the bootstrapper?
For example, this works:
http://localhost/UrlParameterTest/UrlParameterTest.application?param1=1¶m2=2
but none of the following works:
setup.exe ?param1=1¶m2=2
setup.exe ?param1=1
setup.exe param1=1¶m2=2
setup.exe param1=1
Thanks