Windows installer window pops up while executing msi in silent mode
up vote
1
down vote
favorite
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?
windows-installer msiexec
add a comment |
up vote
1
down vote
favorite
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?
windows-installer msiexec
This pop up is the msiexec help pop up. It’s telling you it doesn’t like your command line. The /I <packageName> should come first. Move the /qn to after the packageName
– David Daugherty
Nov 11 at 14:21
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
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?
windows-installer msiexec
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?
windows-installer msiexec
windows-installer msiexec
asked Nov 9 at 21:36
Akis
167
167
This pop up is the msiexec help pop up. It’s telling you it doesn’t like your command line. The /I <packageName> should come first. Move the /qn to after the packageName
– David Daugherty
Nov 11 at 14:21
add a comment |
This pop up is the msiexec help pop up. It’s telling you it doesn’t like your command line. The /I <packageName> should come first. Move the /qn to after the packageName
– David Daugherty
Nov 11 at 14:21
This pop up is the msiexec help pop up. It’s telling you it doesn’t like your command line. The /I <packageName> should come first. Move the /qn to after the packageName
– David Daugherty
Nov 11 at 14:21
This pop up is the msiexec help pop up. It’s telling you it doesn’t like your command line. The /I <packageName> should come first. Move the /qn to after the packageName
– David Daugherty
Nov 11 at 14:21
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
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:
How to make better use of MSI files (on setting msiexec.exe parameters and more)- Microsoft® Command Line Utilities 14.0 for SQL Server®
- Microsoft® Command Line Utilities 11 for SQL Server®
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
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:
How to make better use of MSI files (on setting msiexec.exe parameters and more)- Microsoft® Command Line Utilities 14.0 for SQL Server®
- Microsoft® Command Line Utilities 11 for SQL Server®
add a comment |
up vote
0
down vote
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:
How to make better use of MSI files (on setting msiexec.exe parameters and more)- Microsoft® Command Line Utilities 14.0 for SQL Server®
- Microsoft® Command Line Utilities 11 for SQL Server®
add a comment |
up vote
0
down vote
up vote
0
down vote
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:
How to make better use of MSI files (on setting msiexec.exe parameters and more)- Microsoft® Command Line Utilities 14.0 for SQL Server®
- Microsoft® Command Line Utilities 11 for SQL Server®
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:
How to make better use of MSI files (on setting msiexec.exe parameters and more)- Microsoft® Command Line Utilities 14.0 for SQL Server®
- Microsoft® Command Line Utilities 11 for SQL Server®
answered Nov 10 at 1:50
Stein Åsmul
20.4k1354111
20.4k1354111
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53233550%2fwindows-installer-window-pops-up-while-executing-msi-in-silent-mode%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
This pop up is the msiexec help pop up. It’s telling you it doesn’t like your command line. The /I <packageName> should come first. Move the /qn to after the packageName
– David Daugherty
Nov 11 at 14:21