-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcom.apple.applicationaccess.json
executable file
·153 lines (153 loc) · 7.74 KB
/
com.apple.applicationaccess.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
{
"title": "com.apple.applicationaccess",
"description": "Preference Domain: com.apple.applicationaccess, Application: macOS Restrictions",
"__version": "10.15",
"__feedback": "[email protected]",
"type": "object",
"options": {
"remove_empty_properties": true
},
"properties": {
"forceDelayedSoftwareUpdates": {
"title": "Defer Apple Software Updates",
"description": " Supervised only. If set to true, delays user visibility of Software Updates. On macOS, seed build updates will be allowed, without delay",
"propertyOrder": 10,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "boolean",
"default": false,
"options": {
"infoText": "Key: forceDelayedSoftwareUpdates"
}
}
]
},
"enforcedSoftwareUpdateDelay": {
"title": " Software Update Deferral length (in days)",
"description": "Supervised only. This restriction allows the admin to set how many days a software update on the device will be delayed. With this restriction in place, the user will not see a software update until the specified number of days after the software update release date.",
"propertyOrder": 20,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "integer",
"minimum": 0,
"maximum": 90,
"default": 30,
"options": {
"infoText": "Key: enforcedSoftwareUpdateDelay"
}
}
]
},
"forceDelayedAppSoftwareUpdates": {
"title": "Defer Non-OS Software Updates",
"description": " Supervised only - macOS 11 or later. If true, delays user visibility of non-OS Software Updates. Visibility of Operating System updates is controlled through forceDelayedSoftwareUpdates. The delay is 30 days unless enforcedSoftwareUpdateDelay is set to another value.",
"propertyOrder": 30,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "boolean",
"default": false,
"options": {
"infoText": "Key: forceDelayedAppSoftwareUpdates"
}
}
]
},
"enforcedSoftwareUpdateNonOSDeferredInstallDelay": {
"title": "Non OS Update Deferral length (in days)",
"description": "Supervised only. macOS 11.3 and later. This restriction allows the admin to set how many days to delay an app software update on the device. When this restriction is in place the user sees a non-OS software update only after the specified delay after the release of the software. This value controls the delay for forceDelayedAppSoftwareUpdates.",
"propertyOrder": 40,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "integer",
"minimum": 0,
"maximum": 90,
"default": 30,
"options": {
"infoText": "Key: enforcedSoftwareUpdateNonOSDeferredInstallDelay"
}
}
]
},
"enforcedSoftwareUpdateMinorOSDeferredInstallDelay": {
"title": "Minor OS Update Deferral length (in days)",
"description": "Supervised only. macOS 11.3 and later. This restriction allows the admin to set how many days to delay a minor OS software update on the device. When this restriction is in place the user see a software update only after the specified delay after the release of the software update. This value controls the delay for forceDelayedSoftwareUpdates.",
"propertyOrder": 50,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "integer",
"minimum": 0,
"maximum": 90,
"default": 30,
"options": {
"infoText": "Key: enforcedSoftwareUpdateMinorOSDeferredInstallDelay"
}
}
]
},
"forceDelayedMajorSoftwareUpdates": {
"title": "Defer Major Software Updates",
"description": "If set to true, delays user visibility of major OS Software Updates.",
"propertyOrder": 60,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "boolean",
"default": false,
"options": {
"infoText": "Key: forceDelayedMajorSoftwareUpdates"
}
}
]
},
"enforcedSoftwareUpdateMajorOSDeferredInstallDelay": {
"title": "Major OS UpdateDeferral length (in days)",
"description": "Supervised only. macOS 11.3 and later. This restriction allows the admin to set how many days to delay a major software update on the device. When this restriction is in place the user sees a software update only after the specified delay after the release of the software update. This value controls the delay for forceDelayedMajorSoftwareUpdates.",
"propertyOrder": 70,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "integer",
"minimum": 0,
"maximum": 90,
"default": 30,
"options": {
"infoText": "Key: enforcedSoftwareUpdateMajorOSDeferredInstallDelay"
}
}
]
}
}
}