Skip to content

Containers

Set policies related to Multi-Account Containers.

Compatibility: Firefox 113
CCK2 Equivalent: N/A
Preferences Affected: N/A

Currently you can set the initial set of containers. For each container, you can specify the name, icon, and color.

NameDescription
nameName of container
iconCan be fingerprint, briefcase, dollar, cart, vacation, gift, food, fruit, pet, tree, chill, circle, fence
colorCan be blue, turquoise, green, yellow, orange, red, pink, purple, toolbar

Software\Policies\Mozilla\Firefox\Containers (REG_MULTI_SZ) =

{
"Default": [
{
"name": "My container",
"icon": "pet",
"color": "turquoise"
}
]
}

OMA-URI:

./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox/Containers

Value (string):

<enabled/>
<data id="JSON" value='
{
"Default": [
{
"name": "My container",
"icon": "pet",
"color": "turquoise"
}
]
}
'/>

If you are using custom ADMX and ADML administrative templates in Intune, you can use this OMA-URI instead to workaround the limit on the length of strings. Put all of your JSON on one line.

OMA-URI:

./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox/ContainersOneLine

Value (string):

<enabled/>
<data id="JSONOneLine" value='{}'/>
<dict>
<key>Default</key>
<dict>
<key>Containers</key>
<array>
<dict>
<key>name</key>
<string>My container</string>
<key>icon</key>
<string>pet</string>
<key>color</key>
<string>turquoise</string>
</dict>
</array>
</dict>
</dict>
{
"policies": {
"Containers": {
"Default": [
{
"name": "My container",
"icon": "pet",
"color": "turquoise"
}
]
}
}
}