You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I only can specify one command like argument using section
If I specify several arguments like <args>/qb+! TARGETDIR=C:\installfolder</args> (quiet mode + installation path), then I get the syntax error, because the final command will be msiexec /i Setup.msi "/qb+! TARGETDIR=C:\installfolder". The from args are put to quotes which is wrong. It would work if we have msiexec /i Setup.msi /qb+! TARGETDIR=C:\installfolder
Look like the breaking commit is 7796d0b line 237 processStartInfo.Arguments = Utils.BuildArguments(arguments);
PasteArguments.AppendArgument put everything to quotas if it has white-space or quota
if (argument.Length != 0 && ContainsNoWhitespaceOrQuotes(argument))
{
// Simple case - no quoting or changes needed.
stringBuilder.Append(argument);
}
else
{
stringBuilder.Append(Quote);
The text was updated successfully, but these errors were encountered:
I only can specify one command like argument using section
If I specify several arguments like
<args>/qb+! TARGETDIR=C:\installfolder</args>
(quiet mode + installation path), then I get the syntax error, because the final command will bemsiexec /i Setup.msi "/qb+! TARGETDIR=C:\installfolder"
. The from args are put to quotes which is wrong. It would work if we havemsiexec /i Setup.msi /qb+! TARGETDIR=C:\installfolder
Look like the breaking commit is 7796d0b line 237 processStartInfo.Arguments = Utils.BuildArguments(arguments);
PasteArguments.AppendArgument put everything to quotas if it has white-space or quota
The text was updated successfully, but these errors were encountered: