-
Notifications
You must be signed in to change notification settings - Fork 1
/
MasterProfileTemplate.mobileconfig
104 lines (86 loc) · 3.05 KB
/
MasterProfileTemplate.mobileconfig
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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>PayloadDisplayName</key>
<!-- Name displayed on the sidebar. Match the name to the .mobileconfig name, keep it simple and short, and CamelCase it. -->
<string>PROFILE_NAME</string>
<key>PayloadIdentifier</key>
<!-- Match the ending name to the .mobileconfig name, keep it simple, CamelCase it -->
<string>ca.ecuad.mactech.PROFILE_NAME</string>
<key>PayloadUUID</key>
<!-- Generate unique UUIDs with uuidgen command in Terminal -->
<string>GENERATED_UUID_01</string>
<key>PayloadScope</key>
<!-- Choose if its System or User level profile -->
<string>System_OR_User</string>
<key>PayloadDescription</key>
<!-- Short description of what the profile manages -->
<string></string>
<key>PayloadOrganization</key>
<!-- Always the same for your organization -->
<string>EmilyCarrUniversity</string>
<key>PayloadRemovalDisallowed</key>
<!-- Ask admin password to remove profile -->
<true/>
<key>PayloadVersion</key>
<!-- Do Not Change -->
<integer>1</integer>
<key>PayloadType</key>
<!-- Do Not Change -->
<string>Configuration</string>
<key>PayloadContent</key>
<!-- Here is where you target your plists and managed settings -->
<array>
<dict>
<key>PayloadType</key>
<!-- Targeted plist for managed settings, no need for .plist extension -->
<string>com_company_PLISTNAME_REVERSE_DOMAIN_01</string>
<key>PayloadIdentifier</key>
<!-- This identifier matches the targeted plist name or just repeat profile name, good practive to generate and add a .UUID at the end -->
<string>ca.ecuad.mactech.TARGETED_PLIST_NAME.GENERATED_UUID_02</string>
<key>PayloadUUID</key>
<!-- Generate an UUID with uuidgen command in Terminal -->
<string>GENERATED_UUID_03</string>
<key>PayloadVersion</key>
<!-- Do Not Change -->
<integer>1</integer>
<key>PayloadEnabled</key>
<!-- Do Not Change -->
<true/>
<!-- Managed Settings sections, as many as you need for that targeted plist -->
<key>SETTING_KEY_01</key>
<true/>
<key>SETTING_KEY_02</key>
<false/>
<key>SETTING_KEY_03</key>
<integer>1</integer>
<key>SETTING_KEY_04</key>
<string></string>
</dict>
<!-- You can target multiple plists by adding additional dict blocks like the first one above -->
<dict>
<key>PayloadType</key>
<string>com_company_PLISTNAME_REVERSE_DOMAIN_02</string>
<key>PayloadIdentifier</key>
<string>ca.ecuad.mactech.TARGETED_PLIST_NAME.GENERATED_UUID_04</string>
<key>PayloadDisplayName</key>
<string>DISPLAY_NAME_INSIDE_PROFILE_PANEL</string>
<key>PayloadUUID</key>
<string>GENERATED_UUID_05</string>
<key>PayloadVersion</key>
<integer>1</integer>
<key>PayloadEnabled</key>
<true/>
<key>SETTING_KEY_01</key>
<true/>
<key>SETTING_KEY_02</key>
<false/>
<key>SETTING_KEY_03</key>
<integer>1</integer>
<key>SETTING_KEY_04</key>
<string></string>
</dict>
</array>
</dict>
</plist>