Is there a way to force a "random" MSI to perform a single user installation?

I have an MSI for an application that is automatically installed for every user on the computer. I want him to install the application only for the current user. Is there a way to force this when starting MSI?

+5
source share
2 answers

msiexec / ju command line? Msiexec (command line options)

Please note that this makes a kind of "lazy" installation, nothing is installed immediately. Instead, it adds a shortcut to the user's desktop when it is running, the application is then installed only for the current user.

+3
source

All Articles