Ascii2 Posted March 4, 2009 Posted March 4, 2009 (edited) Windows Installer packages (MSI) can be installed unattended using:"MSIEXEC /i <packagename> /qb", where "<packagename>" is the name of the MSI package.Some MSIs have a choice to install for all users or only the current user. When using the line above to install the package unattended, the package is installed only for the current user.How can an MSI package be installed unattended for all users? Edited March 4, 2009 by Ascii2
Ascii2 Posted March 4, 2009 Author Posted March 4, 2009 (edited) - m to all users, u to current userI tried it and it did not work.I have found the correct property:MSIEXEC /i <packagename> /qb ALLUSERS="1"ORMSIEXEC /i <packagename> /qb ALLUSERS="2"If Administrative privileges do not exist ALLUSERS="1" will fail to install; when ALLUSERS="2" an installation to the current user would occur. Edited March 4, 2009 by Ascii2
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now