Edit

uap:SupportedUsers

Indicates whether or not the package is multi-user aware. This setting is used at install time to determine whether the package can be installed on the system.

Element hierarchy

<Package>
   └─ <Properties>
      └─ <uap:SupportedUsers>

Syntax

<uap:SupportedUsers>
    <!-- TODO: Add value description -->
</uap:SupportedUsers>

Value

A string that can have one of the following values: "single" or "multiple".

Attributes

None.

Child elements

None.

Parent elements

Parent element Description
Properties Defines additional metadata about the package including attributes that describe how the package appears to users.

Requirements

Item Value
Namespace http://schemas.microsoft.com/appx/manifest/uap/windows10
Minimum OS Version Windows 10 version 1511 (Build 10586)

Remarks

Note

You may get an error if the manifest elements DisplayName or Description contain characters disallowed by the Windows firewall; namely | and all, due to which Windows fails to create the AppContainer profile for the package. Use this reference for troubleshooting if you get an error.

Examples

<Properties>
    <uap:SupportedUsers>single</uap:SupportedUsers>
</Properties>