Skip to content

Commit 3dad1b5

Browse files
authored
feat: Add DisableAccounts policy (#68)
1 parent 7669e21 commit 3dad1b5

1 file changed

Lines changed: 50 additions & 0 deletions

File tree

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
---
2+
title: "DisableAccounts"
3+
description: "Disable account-based services, including sync."
4+
category: "Miscellaneous"
5+
---
6+
7+
Disable account-based services, including sync.
8+
9+
**Compatibility:** Firefox 119\
10+
**CCK2 Equivalent:** N/A\
11+
**Preferences Affected:** N/A
12+
13+
## Windows (GPO)
14+
15+
```
16+
Software\Policies\Mozilla\Firefox\DisableAccounts = 0x1 | 0x0
17+
```
18+
19+
## Windows (Intune)
20+
21+
OMA-URI:
22+
23+
```url
24+
./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox/DisableAccounts
25+
```
26+
27+
Value (string):
28+
29+
```xml
30+
<enabled/> or <disabled/>
31+
```
32+
33+
## macOS
34+
35+
```xml
36+
<dict>
37+
<key>DisableAccounts</key>
38+
<true/> | <false/>
39+
</dict>
40+
```
41+
42+
## policies.json
43+
44+
```json
45+
{
46+
"policies": {
47+
"DisableAccounts": true | false
48+
}
49+
}
50+
```

0 commit comments

Comments
 (0)