[RESOLVED] VB6 Setup Bootstrap CommandLine options?
I don't use VB5/6, but I need to fix this installation. Searched the MSDN, not getting anything.
It's using this setup.exe (Setup Bootstrap for Visual Basic Setup Toolkit) and a CAB file. It's currently started from a vbs as - shell.run "setup.exe",1,True - but I'd like to start it from the commandline. The obvious /?hhelp options give nothing. Can anyone help translating?
Re: VB6 Setup Bootstrap CommandLine options?
Start "c:\thePath\setup.exe"
Re: VB6 Setup Bootstrap CommandLine options?
Sorry no - I need the commandline options that the setup.exe takes, as in:
setup.exe /value1=true or something similar. Anything I've tried exits with a windows box like 'Invalid parameters'.
Re: VB6 Setup Bootstrap CommandLine options?
It doesn't have any command line options.
Re: VB6 Setup Bootstrap CommandLine options?
OK, thank you. Time to read on vbs figuring this. :sick:
Re: [RESOLVED] VB6 Setup Bootstrap CommandLine options?
The arguments to Shell.Run are:
Program to start
Window state - 1 is normal (not minimized or maximized) with focus
Wait for return... - your scripts halts and waits for the program to finish
Re: [RESOLVED] VB6 Setup Bootstrap CommandLine options?
Takker og bukker!
Rather embarrassing not being familiar with vbs, but I can make some unreadable batch-files. Still has to figure why this setup behaves differently from the commandprompt and vbs. I'll see tomorrow. :thumb: