Hi Lee,

> Take a look at the attached screen captures. Is this expected behavior
> for install command line arguments?
>
> /ConfigDir=c:\yada1\yada2\yada3 FAILS
>
> /ConfigDir="c:\yada1\yada2\yada3" WORKS

Good question. The installer uses the standard Microsoft VC++ GetArgC and
GetArgV functions to process the command line. [there seems to be a
difference between parameter parsing "prior to 2008" and "post 2008"
libraries]. As far as I can see, you have to put double-quotes around the
"values". A string surrounded by double quotation marks ("string") is
interpreted as a single argument, regardless of white space contained
within.

I'll re-check this tomorrow.

Friedrich