1

Executing MsSqlCmdLnUtilsx64 in silent mode, but Windows installer message window pops up while installing. My command parameters are like this,
"/qn /i "package.msi" /IACCEPTMSSQLCMDLNUTILSLICENSETERMS=YES". Any suggestions?enter image description here

Akis
  • 81
  • 2
  • 8
  • 1
    This pop up is the msiexec help pop up. It’s telling you it doesn’t like your command line. The /I should come first. Move the /qn to after the packageName – Doc Nov 11 '18 at 14:21

1 Answers1

0

Command Line: There is a similar question here: Installing sqlcmd in silent mode accepting EULA, but it might be for a different version of the tool. However, let's try with these command lines:

msiexec.exe /I "MsSqlCmdLnUtils.msi" /QN /L*V "C:\MyLog.log" IACCEPTMSSQLCMDLNUTILSLICENSETERMS=YES

or

msiexec.exe /i "MsSqlCmdLnUtils.msi" /passive IACCEPTMSSQLCMDLNUTILSLICENSETERMS=YES

Some Further Links:

Stein Åsmul
  • 39,960
  • 25
  • 91
  • 164