4

I am trying to script the installation of the web deployment service (WebDeploy_x64_en-US). There is a quiet flag (/quiet), however it does not install the remote management service by default. I did a "WebDeploy_x64_en-US /?" but I can't see any command line argument for selecting features.

Does any one know how make to WebDeploy_x64_en-US.msi install all the features quietly?

Oscar

Oscar Kuo
  • 253

2 Answers2

7

I had to add LicenseAccepted="0" to get it to install.

msiexec /i c:\path\to\WebDeploy_x64_en-US.msi ADDLOCAL=ALL /qn /norestart LicenseAccepted="0"
GregB
  • 1,432
0

Silent install command line, with all features:

msiexec /i c:\path\to\WebDeploy_x64_en-US.msi ADDLOCAL=ALL /qn /norestart