Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

msiexec command line to install a software for all users in registry instead of only admin?

Im using following command to install the setup kit on the user's machine using admin account but it seems to be installing for just admin account rather than other's user accounts.

Following is the command that I use.

msiexec /m "Test(Outlook 2016).msi"

How can I change the command so that it will install for all users?

msiexec /m "Test(Outlook 2016).msi"

like image 942
user3427542 Avatar asked Jan 26 '23 18:01

user3427542


1 Answers

You could do something like this

msiexec /i <PATH> ALLUSERS=1 /qn

like image 137
Thomas Reichmann Avatar answered Jan 31 '23 09:01

Thomas Reichmann