Is “Everyone” or “Just me” the default option for a Windows Installer package?

前端 未结 1 1375
傲寒
傲寒 2021-01-14 06:59

Microsoft has an article (http://support.microsoft.com/kb/835460) which explains how to use the Orca database editor to remove the \"Everyone\" option and the \"Just me\" op

1条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-14 07:57

    The default for deployment projects (MSI files) for the InstallAllUsers property is "Just me".

    Abstract:

    InstallAllUsers Property

    False — The application will only be installed for the current user and will not be visible to other users of the computer (the default).

    True — The application will be installed for all users.

    Also the InstallAllUsersVisible property (available from VS.NET 2005 onwards), which seems to control whether the user option of choosing 'Just me' or 'Everyone' is visible at all. In other words, you don't need to fiddle with the Orca MSI database editor to show or hide this choice in your installer.

    0 讨论(0)
提交回复
热议问题