Click here to Skip to main content
15,886,137 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

I need to install "Web Deploy 3.6" (WebDeploy_amd64_en-US.msi) with "Complete" option but using command prompt or a powershell script silently.

Can you help me with this issue?

Thanks.

What I have tried:

If I use:

Start-Process msiexec.exe -Wait -ArgumentList '/i "C:\Temp\Web Deploy v3.6\WebDeploy_amd64_en-US.msi" /quiet'


I can install the .msi file but I don't install it with "Complete" option (with all settings).
Posted
Updated 11-Feb-19 4:23am

1 solution

Try this command line:
msiexec.exe /i filepath.msi /quiet InstallMode=Complete

It may or may not work. It depends on how the vendor wrote the .MSI and there are plenty of vendors who are terrible at it.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900