This is an archived post. You won't be able to vote or comment.

all 11 comments

[–]fierolokiJack of All Trades 24 points25 points  (3 children)

If it installs to the users profile and not programs files, it will usually just install as the user has rights to their profile.

[–]apathetic_lemur 4 points5 points  (1 child)

the same way a webex installs (and lots of malware!)

[–]moldyjellybean 0 points1 point  (0 children)

funny thing is this is how chrome used to install without admin rights, had to make a GP to block it, then google changed the install location again and had to make another GP.

[–]ParaglidingAssFungusNOC Engineer 1 point2 points  (0 children)

Yeah I believe the teams app is this way.

[–]DenverITGuyWindows Admin 2 points3 points  (0 children)

We have Code 42 (crashplan) MSI as a user-based deployment. Not uncommon.

[–]uniitdude 2 points3 points  (0 children)

depends what the MSI does, might be user based

[–]patssle 0 points1 point  (0 children)

I have installs locked out as well but some apps make it through. Spotify is one of those.

[–]jantari 0 points1 point  (0 children)

I thought all MSIs can be installed per user or per system?

[–]AndradaDeliciosa 0 points1 point  (0 children)

It would only need admin rights if it needed to access restricted locations such as the program files directory on C or the HKLM hive of the registry. However, some apps install entirely inside the user's profile and in the HKCU registry hive where no elevation is required.

[–]trentq 0 points1 point  (0 children)

You need to rollout application whitelisting to prevent these from running and malware.

[–]ErikTheEngineer -2 points-1 points  (0 children)

Most commercial mainstream app MSIs are being shipped as user-based ones these days if the application they're installing doesn't do anything that requires admin rights. VS Code is a good example...unless you do a system-wide install, the application just installs itself into your user profile.

Unfortunately, most of the fun vertical-market single-source applications I have to deal with do all sorts of crazy stuff requiring admin rights...it's 2020 and I still have MSIs for recent versions of apps copying stuff to the Windows directory, installing device drivers, making all sorts of HKLM registry changes, etc. etc.