Containers
Set policies related to Multi-Account Containers.
Compatibility: Firefox 113
CCK2 Equivalent: N/A
Preferences Affected: N/A
Values
Section titled “Values”Currently you can set the initial set of containers. For each container, you can specify the name, icon, and color.
| Name | Description |
|---|---|
name | Name of container |
icon | Can be fingerprint, briefcase, dollar, cart, vacation, gift, food, fruit, pet, tree, chill, circle, fence |
color | Can be blue, turquoise, green, yellow, orange, red, pink, purple, toolbar |
Windows (GPO)
Section titled “Windows (GPO)”Software\Policies\Mozilla\Firefox\Containers (REG_MULTI_SZ) =
{ "Default": [ { "name": "My container", "icon": "pet", "color": "turquoise" } ]}Windows (Intune)
Section titled “Windows (Intune)”OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox/ContainersValue (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/ContainersOneLineValue (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.json
Section titled “policies.json”{ "policies": { "Containers": { "Default": [ { "name": "My container", "icon": "pet", "color": "turquoise" } ] } }}