Why install for "just me" as opposed to "everybody"?

13,092

Solution 1

"Just for me" should mean that the application installs into a user directory and only creates shortcuts for the current user. This could be useful e.g. when the user does not have admin rights (and therefore can't write into %PROGRAMFILES%, HKEY_LOCAL_MACHINE, and other interesting places).

If you force "install for everybody", you may be limiting the application, as only users with admin rights will be able to install it.

To clarify: if you specify "for everybody", it's a hint for the installer to install the program into global locations (e.g. %PROGRAMFILES% or HKLM, as opposed to %APPDATA% and HKCU). If you're the one creating the installer, of course you have ways to subvert this convention, but in general this is the case.

Solution 2

I believe it stems from home users that may have a "family PC". Kids don't want "Family Tree Maker" and parents don't want "Spongebob Squarepants - the Video Game" on their respective start menus.

Solution 3

Well, I think the answer depends on how the application you're installing has been developed.

  • Does it correctly place all user-created data into appropriate folders under a user's profile, or is it designed to run universally (and store user-created data in a common folder structure such as all users)?
  • Does it rely on registry keys in a user's profile (HKCU) or does it rely on a common registry (e.g. HKLM).
  • Does it require admistrative permissions to execute? (might be a good reason for the "Just for me" option, if non-admins shouldn't see the application).
  • These are just a couple of questions worth answering.

    In general, will it be a problem if "Just for me" is disabled?

    Depending on the answers to the other questions (assuming the application will run fine for any user) I'd think it's probably safe, but it also depends which operating system you're installing on too.

    Some of the more recent OSes such as Vista frown on certain designs (such as requiring UAC for certain functionality) or not allowing modifications to HKLM in the registry. IN other words, you'd better check the application will run nicely for all users (including non-administrators).

    Share:
    13,092

    Related videos on Youtube

    kinokijuf
    Author by

    kinokijuf

    Updated on September 17, 2022

    Comments

    • kinokijuf
      kinokijuf over 1 year

      I'm using windows installer for a client's app, and they are complaining that sometimes multiple instances of an app appear on the computers they are using for testing. This problem has gone away since I hid the option install for "just me" and "everybody", and just set it to install for everybody. New versions are downloaded and installed about once a week and over a period the multiple versions have appeared, even though each installer supposedly removes older versions.

      Is there something wrong with this? Am I likely to run into problems down the line?

      Why would someone want to install for "Just me" anyway?

    • Paul Ackerman
      Paul Ackerman over 15 years
      Good point about it being restricted to admin rights if it's true
    • Piskvor left the building
      Piskvor left the building over 13 years
      @Shahin: it's more of a hint from the user to the installer: "I don't have admin rights, don't bother trying to write to %SYSTEM32%"
    • Admin
      Admin over 13 years
      This can be done (well, except fonts, afaik) in Windows, too... it's just not very well supported by many installers/apps :-(.