-
Bootstrapper's .ini File
Hello,
I am trying to alter Microsoft's bootstrapper's settings.ini file...
[Bootstrap]
Msi="C:\my folder\my setup.msi"
'LanguageDirectory=
'ProductName=
'DialogText=
CaptionText=
'ErrorCaptionText=
FxInstallerPath="C:\my folder\"
MDACInstallerPath="C:\my folder\"
This installs the .NET framework if needed and MDAC 2.x if necessary as well as the app itself as long as you put dotnetfx.exe and the MDAC's .exe in the same folder.
~~BUT
Notice there is a C:\ requirement. Is there a way to exclude the C:\ and include something like App.Path (VB6) ?
I tried:
[Bootstrap]
Msi="..\my folder\my setup.msi"
'LanguageDirectory=
'ProductName=
'DialogText=
'CaptionText=
'ErrorCaptionText=
FxInstallerPath="..\my folder\"
MDACInstallerPath="..\my folder\"
This code fails though w/ the error:
"Incorrect Command Line Parameters"
Chris