Unattended Wse Install

I’ve been on a project where a number of prerequisites needed scripting and we’re provided in the MSI format.

This is the Microsoft Installer format. There are a number of switches you can use which can streamline an application install. Problem was that the way our installing system operates here, the execution environment runs as the BUILTIN\Administrator, but doesn’t load his profile so its taken some time to find the right combination of switches.

So here they are:

1MSIEXEC.EXE /i Microsoft_WSE_3.0.msi ALLUSERS=1 /q/n /L*v WSE3InstallLog.txt

...and what do those switches mean:

ALLUSERS=1 takes care of the lack of registry profile
/q is quiet install
/n is no user interface
/L*v WSE3install.log logs all messages to a logfile