Is it possible to deploy IE8 without user interaction using WuInstall?

With this command, you should get the absolute minimum of user interaction (=none) when installing IE 8:

wuinstall.exe /install /autoaccepteula /match "Internet Explorer 8"

/disable_ie_firstruncustomize /quiet /disableprompt

  • /install ... installs the update
  • /match "Internet Explorer 8" ... Filters only for updates with title matching "Internet Explorer 8"
  • /autoaccepteula ... Accepts any EULAs automatically (suppress user interaction on that)
  • /disable_ie_firstruncustomize ... Disables the Internet Explorer 8 set up dialog.
  • /quiet ... The update-installer is forced to do an installation without user interaction
  • /disableprompt ... Disable showing source prompts to a user when installing the updates
Did this answer your question?
😞
😐
🤩