├── .gitignore
├── .github_deploy_key.enc
├── clburlison
├── ActiveDirectory
│ ├── README.md
│ └── ActiveDirectory_Generic.mobileconfig
├── microsoft
│ ├── README.md
│ ├── MAU_enable_external_builds.mobileconfig
│ ├── MAU_enable_internal_builds.mobileconfig
│ ├── MAU_disable_insider_builds.mobileconfig
│ └── MAU_register_apps.mobileconfig
├── screensaver.mobileconfig
├── Pref_Panes.mobileconfig
├── enable_fus.mobileconfig
├── RemoteManagement.mobileconfig
├── applicationaccess.mobileconfig
├── ARDControl.mobileconfig
├── disable_keychain_pwd_sync.mobileconfig
├── MouseRightClick.mobileconfig
├── Disable_FUS_Menu_Item.mobileconfig
├── Geektool-login-item.mobileconfig
└── crypt.mobileconfig
├── .travis.yml
├── .scripts
└── travis_update.sh
├── LICENSE
├── README.md
└── .gitmodules
/.gitignore:
--------------------------------------------------------------------------------
1 | *.DS_Store
2 | .update.sh
--------------------------------------------------------------------------------
/.github_deploy_key.enc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/clburlison/profiles/HEAD/.github_deploy_key.enc
--------------------------------------------------------------------------------
/clburlison/ActiveDirectory/README.md:
--------------------------------------------------------------------------------
1 | More Active Directory info:
2 | * https://support.apple.com/en-us/HT202834
3 | * http://help.apple.com/deployment/osx/#/ior7c305274c
4 |
--------------------------------------------------------------------------------
/.travis.yml:
--------------------------------------------------------------------------------
1 | language: generic
2 | sudo: false
3 |
4 | before_install:
5 | - openssl aes-256-cbc -K $encrypted_2a7ed9759856_key -iv $encrypted_2a7ed9759856_iv -in .github_deploy_key.enc -out /tmp/github_deploy_key -d
6 | - eval "$(ssh-agent -s)"
7 | - chmod 600 /tmp/github_deploy_key
8 | - ssh-add /tmp/github_deploy_key
9 |
10 | script:
11 | - .scripts/travis_update.sh
12 |
--------------------------------------------------------------------------------
/.scripts/travis_update.sh:
--------------------------------------------------------------------------------
1 | git config --global user.name "clayton-bot"
2 | git config --global user.email "clburlison+gitbot@gmail.com"
3 | git config --global push.default simple
4 | git remote set-url origin git@github.com:clburlison/profiles.git
5 | git checkout master
6 | git submodule foreach git pull origin master
7 | git add -fA
8 | git commit -m "Submodule Sync"
9 | if [[ $? =~ 0 ]] ; then
10 | git show --name-status | cat
11 | git push origin master
12 | fi
13 | exit 0
14 |
--------------------------------------------------------------------------------
/clburlison/microsoft/README.md:
--------------------------------------------------------------------------------
1 | Microsoft Profiles
2 | ===
3 |
4 | # MAU profiles
5 |
6 | Please be careful with these profiles. All of the MAU profiles are managing the same domain `com.microsoft.autoupdate2`. I have, by default, made it so they use the same Identifier. These profiles should not be used together and will override each other.
7 |
8 | * `MAU_register_apps.mobileconfig` - MAU will only show available updates for apps that have been used (i.e. launched by a user). This is an example profile that will register all 2016 apps. Note that the `Application ID` and `LCID` values will not change for 2016 and these are universal values for all languages.
9 |
10 | Also of note: If you are managing other settings for `com.microsoft.autoupdate2` with a profile you should move all managed setting to be under one profile. Profiles managing the same domain do not nest well and could cause issues.
11 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) 2017 Clayton Burlison
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | clburlison profiles
2 | ===
3 |
4 | [](https://travis-ci.org/clburlison/profiles)
5 |
6 |
7 | This repo uses submodules to include profiles from other Github users. By including all of these profiles in one place it is much easier to search locally on ones computer.
8 |
9 | # Commands
10 |
11 | If you aren't familiar with git submodules use the commands below.
12 |
13 | For new clones:
14 | ```bash
15 | git clone --recursive https://github.com/clburlison/profiles.git
16 | ```
17 |
18 | To update this cloned repo:
19 | ```bash
20 | git pull --recurse-submodules
21 | ```
22 |
23 | *NOTE:* This repo is updated daily with a travis build.
24 |
25 | ## Adding repos
26 |
27 | If you would like to add your profiles repo to this auto update repo:
28 |
29 | 1. Fork this repo:
30 |
31 | git clone --recursive https://github.com/clburlison/profiles.git
32 |
33 | 1. Create a new branch
34 |
35 | git checkout -b github_username
36 |
37 | 1. Add your repo as a git submodule
38 |
39 | git submodule add https://github.com/github_username/repo_name github_username
40 |
41 | 1. Commit your changes
42 |
43 | git commit -m "Add github_username"
44 |
45 | 1. Push to your fork
46 |
47 | git push
48 |
49 | 1. Open a [pull request](https://github.com/clburlison/profiles/pulls)
50 |
51 |
52 | # Disclaimer
53 | You should read and make sure you understand what each profile is doing prior to installing. If you don't know what a key is doing it's your job to look it up.
54 |
55 | _All files provided as is. You run it. You break it. You fix it. I hold no responsibility._
56 |
57 |
--------------------------------------------------------------------------------
/clburlison/screensaver.mobileconfig:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | PayloadContent
6 |
7 |
8 | askForPassword
9 |
10 | askForPasswordDelay
11 | 0
12 | idleTime
13 | 150
14 | PayloadEnabled
15 |
16 | PayloadIdentifier
17 | com.example.screensaver
18 | PayloadDisplayName
19 | Screen Saver
20 | PayloadType
21 | com.apple.screensaver
22 | PayloadUUID
23 | C1A01083-7483-4D6C-9200-97E28BF9541F
24 | PayloadVersion
25 | 1
26 |
27 |
28 | PayloadUUID
29 | 35956225-3AA0-4735-BA3B-68224F26381D
30 | PayloadType
31 | Configuration
32 | PayloadOrganization
33 | Example Co
34 | PayloadIdentifier
35 | com.example.screensaver
36 | PayloadDisplayName
37 | Screensaver
38 | PayloadDescription
39 | Screensaver
40 | PayloadVersion
41 | 1
42 | PayloadEnabled
43 |
44 | PayloadRemovalDisallowed
45 |
46 |
47 |
48 |
--------------------------------------------------------------------------------
/clburlison/Pref_Panes.mobileconfig:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | PayloadIdentifier
6 | com.example.prefpanes
7 | PayloadRemovalDisallowed
8 |
9 | PayloadScope
10 | System
11 | PayloadType
12 | Configuration
13 | PayloadUUID
14 | 72F73F53-A5E6-48CE-AB73-27641F526EF7
15 | PayloadOrganization
16 | Example Co
17 | PayloadVersion
18 | 1
19 | PayloadDisplayName
20 | Preference Panes
21 | PayloadContent
22 |
23 |
24 | PayloadType
25 | com.apple.systempreferences
26 | PayloadVersion
27 | 1
28 | PayloadIdentifier
29 | com.example.profile.prefpanes
30 | PayloadEnabled
31 |
32 | PayloadUUID
33 | d264dfc2-2b01-f0d0-24e2-9c98d6f3239b
34 | PayloadDisplayName
35 | Preference Panes
36 | DisabledPreferencePanes
37 |
38 | com.apple.preferences.icloud
39 | com.apple.preferences.internetaccounts
40 | com.apple.preferences.configurationprofiles
41 |
42 |
43 |
44 |
45 |
46 |
--------------------------------------------------------------------------------
/clburlison/enable_fus.mobileconfig:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | PayloadContent
6 |
7 |
8 | PayloadContent
9 |
10 | .GlobalPreferences
11 |
12 | Forced
13 |
14 |
15 | mcx_preference_settings
16 |
17 | MultipleSessionEnabled
18 |
19 |
20 |
21 |
22 |
23 |
24 | PayloadEnabled
25 |
26 | PayloadIdentifier
27 | MCXToProfile.41f61b80-8605-45dc-870c-37ce60370076.alacarte.customsettings.e92822d7-bfc4-4b4f-824d-48fa8ca5812f
28 | PayloadType
29 | com.apple.ManagedClient.preferences
30 | PayloadUUID
31 | e92822d7-bfc4-4b4f-824d-48fa8ca5812f
32 | PayloadVersion
33 | 1
34 |
35 |
36 | PayloadDescription
37 | Configures Fast User Switching
38 | - FUS: Enabled
39 | PayloadDisplayName
40 | Config: Fast User Switching
41 | PayloadIdentifier
42 | Enable_FUS
43 | PayloadOrganization
44 | Your_Organisation
45 | PayloadRemovalDisallowed
46 |
47 | PayloadScope
48 | System
49 | PayloadType
50 | Configuration
51 | PayloadUUID
52 | 41f61b80-8605-45dc-870c-37ce60370076
53 | PayloadVersion
54 | 1
55 |
56 |
--------------------------------------------------------------------------------
/clburlison/RemoteManagement.mobileconfig:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | PayloadContent
6 |
7 |
8 | PayloadContent
9 |
10 | com.apple.RemoteManagement
11 |
12 | Forced
13 |
14 |
15 | mcx_preference_settings
16 |
17 | LoadRemoteManagementMenuExtra
18 |
19 |
20 |
21 |
22 |
23 |
24 | PayloadEnabled
25 |
26 | PayloadIdentifier
27 | 64428430-0eff-4f2a-9bb6-db11845320e2.alacarte.customsettings.81bb12b2-2e1e-42d3-b942-6dcd17162195
28 | PayloadType
29 | com.apple.ManagedClient.preferences
30 | PayloadUUID
31 | 81bb12b2-2e1e-42d3-b942-6dcd17162195
32 | PayloadVersion
33 | 1
34 |
35 |
36 | PayloadDescription
37 | Disable Menu Icon Remote Management
38 | PayloadDisplayName
39 | Disable RemoteManagement Icon
40 | PayloadIdentifier
41 | com.example.RemoteManagement
42 | PayloadOrganization
43 | Example Co
44 | PayloadRemovalDisallowed
45 |
46 | PayloadScope
47 | System
48 | PayloadType
49 | Configuration
50 | PayloadUUID
51 | 64428430-0eff-4f2a-9bb6-db11845320e2
52 | PayloadVersion
53 | 1
54 |
55 |
56 |
--------------------------------------------------------------------------------
/clburlison/microsoft/MAU_enable_external_builds.mobileconfig:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | PayloadContent
6 |
7 |
8 | PayloadContent
9 |
10 | com.microsoft.autoupdate2
11 |
12 | Forced
13 |
14 |
15 | mcx_preference_settings
16 |
17 | ChannelName
18 | External
19 |
20 |
21 |
22 |
23 |
24 | PayloadEnabled
25 |
26 | PayloadIdentifier
27 | 19f84411-2444-495f-b0d4-06a7fab52352.alacarte.customsettings.fa56218f-622a-4307-9a28-2e075c883742
28 | PayloadType
29 | com.apple.ManagedClient.preferences
30 | PayloadUUID
31 | fa56218f-622a-4307-9a28-2e075c883742
32 | PayloadVersion
33 | 1
34 |
35 |
36 | PayloadDescription
37 | Disable MS Office Insider Builds
38 | PayloadDisplayName
39 | Disable Insider Builds
40 | PayloadIdentifier
41 | co.example.microsoft.autoupdate2
42 | PayloadOrganization
43 | Example Co
44 | PayloadRemovalDisallowed
45 |
46 | PayloadScope
47 | System
48 | PayloadType
49 | Configuration
50 | PayloadUUID
51 | 19f84411-2444-495f-b0d4-06a7fab52352
52 | PayloadVersion
53 | 1
54 |
55 |
56 |
--------------------------------------------------------------------------------
/clburlison/microsoft/MAU_enable_internal_builds.mobileconfig:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | PayloadContent
6 |
7 |
8 | PayloadContent
9 |
10 | com.microsoft.autoupdate2
11 |
12 | Forced
13 |
14 |
15 | mcx_preference_settings
16 |
17 | ChannelName
18 | Internal
19 |
20 |
21 |
22 |
23 |
24 | PayloadEnabled
25 |
26 | PayloadIdentifier
27 | 19f84411-2444-495f-b0d4-06a7fab52352.alacarte.customsettings.fa56218f-622a-4307-9a28-2e075c883742
28 | PayloadType
29 | com.apple.ManagedClient.preferences
30 | PayloadUUID
31 | fa56218f-622a-4307-9a28-2e075c883742
32 | PayloadVersion
33 | 1
34 |
35 |
36 | PayloadDescription
37 | Disable MS Office Insider Builds
38 | PayloadDisplayName
39 | Disable Insider Builds
40 | PayloadIdentifier
41 | co.example.microsoft.autoupdate2
42 | PayloadOrganization
43 | Example Co
44 | PayloadRemovalDisallowed
45 |
46 | PayloadScope
47 | System
48 | PayloadType
49 | Configuration
50 | PayloadUUID
51 | 19f84411-2444-495f-b0d4-06a7fab52352
52 | PayloadVersion
53 | 1
54 |
55 |
56 |
--------------------------------------------------------------------------------
/clburlison/microsoft/MAU_disable_insider_builds.mobileconfig:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | PayloadContent
6 |
7 |
8 | PayloadContent
9 |
10 | com.microsoft.autoupdate2
11 |
12 | Forced
13 |
14 |
15 | mcx_preference_settings
16 |
17 | ChannelName
18 | Production
19 | DisableInsiderCheckbox
20 |
21 |
22 |
23 |
24 |
25 |
26 | PayloadEnabled
27 |
28 | PayloadIdentifier
29 | 19f84411-2444-495f-b0d4-06a7fab52352.alacarte.customsettings.fa56218f-622a-4307-9a28-2e075c883742
30 | PayloadType
31 | com.apple.ManagedClient.preferences
32 | PayloadUUID
33 | fa56218f-622a-4307-9a28-2e075c883742
34 | PayloadVersion
35 | 1
36 |
37 |
38 | PayloadDescription
39 | Disable MS Office Insider Builds
40 | PayloadDisplayName
41 | Disable Insider Builds
42 | PayloadIdentifier
43 | co.example.microsoft.autoupdate2
44 | PayloadOrganization
45 | Example Co
46 | PayloadRemovalDisallowed
47 |
48 | PayloadScope
49 | System
50 | PayloadType
51 | Configuration
52 | PayloadUUID
53 | 19f84411-2444-495f-b0d4-06a7fab52352
54 | PayloadVersion
55 | 1
56 |
57 |
58 |
--------------------------------------------------------------------------------
/clburlison/applicationaccess.mobileconfig:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | PayloadContent
6 |
7 |
8 | PayloadType
9 | com.apple.applicationaccess.new
10 | PayloadVersion
11 | 1
12 | PayloadIdentifier
13 | com.example.config.applicationaccess
14 | PayloadEnabled
15 |
16 | PayloadUUID
17 | 524512d1-193a-7bd2-cd4f-b25f842fd97b
18 | PayloadDisplayName
19 | Application Restrictions
20 | familyControlsEnabled
21 |
22 | pathBlackList
23 |
24 | /Applications/Mail.app
25 | /Applications/Messages.app
26 |
27 | pathWhiteList
28 |
29 | /
30 |
31 | whiteList
32 |
33 |
34 |
35 | PayloadDescription
36 | Application Restrictions.
37 | PayloadDisplayName
38 | Application Restrictions
39 | PayloadIdentifier
40 | com.example.applicationaccess
41 | PayloadOrganization
42 | Example Co
43 | PayloadRemovalDisallowed
44 |
45 | PayloadType
46 | Configuration
47 | PayloadUUID
48 | 176EF199-E93F-46EE-9757-47C7CD66F7FC
49 | PayloadVersion
50 | 1
51 |
52 |
--------------------------------------------------------------------------------
/clburlison/ARDControl.mobileconfig:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | PayloadIdentifier
6 | com.example.remotemanagement
7 | PayloadRemovalDisallowed
8 |
9 | PayloadScope
10 | System
11 | PayloadType
12 | Configuration
13 | PayloadUUID
14 | 6AE5512A-6860-4AC4-8CF2-8A5E5413462F
15 | PayloadOrganization
16 | Example Co
17 | PayloadVersion
18 | 1
19 | PayloadDisplayName
20 | Remote Management Admin
21 | PayloadDescription
22 | Allow Remote Control when Apple Remote Desktop is open.
23 | PayloadContent
24 |
25 |
26 | PayloadContent
27 |
28 | com.apple.RemoteManagement
29 |
30 | Forced
31 |
32 |
33 | mcx_preference_settings
34 |
35 | AdminConsoleAllowsRemoteControl
36 |
37 |
38 |
39 |
40 |
41 |
42 | PayloadType
43 | com.apple.ManagedClient.preferences
44 | PayloadVersion
45 | 1
46 | PayloadIdentifier
47 | com.example.remotemanagement.6AE5512A-6860-4AC4-8CF2-8A5E5413462F.customsettings.B6E8C3A0-C5F4-4817-AB65-AC9065B9B420
48 | PayloadUUID
49 | B6E8C3A0-C5F4-4817-AB65-AC9065B9B420
50 | PayloadEnabled
51 |
52 |
53 |
54 |
55 |
--------------------------------------------------------------------------------
/clburlison/disable_keychain_pwd_sync.mobileconfig:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | PayloadContent
6 |
7 |
8 | PayloadContent
9 |
10 | com.apple.keychainaccess
11 |
12 | Forced
13 |
14 |
15 | mcx_preference_settings
16 |
17 | SyncLoginPassword
18 |
19 |
20 |
21 |
22 |
23 |
24 | PayloadEnabled
25 |
26 | PayloadIdentifier
27 | MCXToProfile.29c5df3a-3a2a-425c-b599-54bd1468718c.alacarte.customsettings.489e5692-64db-4975-9c7f-53fb95a91ef1
28 | PayloadType
29 | com.apple.ManagedClient.preferences
30 | PayloadUUID
31 | 489e5692-64db-4975-9c7f-53fb95a91ef1
32 | PayloadVersion
33 | 1
34 |
35 |
36 | PayloadDescription
37 | This disables Apple's built in mechanism for synchronizing keychain passwords from the loginwindow.
38 | PayloadDisplayName
39 | Disable Keychain Password Sync
40 | PayloadIdentifier
41 | com.example.keychainaccess
42 | PayloadOrganization
43 | Example Co
44 | PayloadRemovalDisallowed
45 |
46 | PayloadScope
47 | System
48 | PayloadType
49 | Configuration
50 | PayloadUUID
51 | 29c5df3a-3a2a-425c-b599-54bd1468718c
52 | PayloadVersion
53 | 1
54 |
55 |
56 |
--------------------------------------------------------------------------------
/clburlison/MouseRightClick.mobileconfig:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | PayloadContent
6 |
7 |
8 | PayloadContent
9 |
10 | com.apple.driver.AppleHIDMouse
11 |
12 | Set-Once
13 |
14 |
15 | mcx_data_timestamp
16 | 2013-12-06T18:58:51Z
17 | mcx_preference_settings
18 |
19 | Button2
20 | 2
21 |
22 |
23 |
24 |
25 |
26 | PayloadEnabled
27 |
28 | PayloadIdentifier
29 | 237831b6-770d-4614-8478-53722c6b0e61.alacarte.customsettings.f61b6a13-f19a-4bb6-bc1a-cc35648f3990
30 | PayloadType
31 | com.apple.ManagedClient.preferences
32 | PayloadUUID
33 | f61b6a13-f19a-4bb6-bc1a-cc35648f3990
34 | PayloadVersion
35 | 1
36 |
37 |
38 | PayloadDescription
39 | Configures Right Mouse Click for secondary click (context menu).
40 | PayloadDisplayName
41 | Mouse Right Click
42 | PayloadIdentifier
43 | com.example.MouseRightClick
44 | PayloadOrganization
45 | Example Co
46 | PayloadRemovalDisallowed
47 |
48 | PayloadScope
49 | System
50 | PayloadType
51 | Configuration
52 | PayloadUUID
53 | 237831b6-770d-4614-8478-53722c6b0e61
54 | PayloadVersion
55 | 1
56 |
57 |
--------------------------------------------------------------------------------
/.gitmodules:
--------------------------------------------------------------------------------
1 | [submodule "golbiga"]
2 | path = golbiga
3 | url = https://github.com/golbiga/Profiles
4 | [submodule "gregneagle"]
5 | path = gregneagle
6 | url = https://github.com/gregneagle/Profiles
7 | [submodule "rtrouton"]
8 | path = rtrouton
9 | url = https://github.com/rtrouton/profiles
10 | [submodule "erikng"]
11 | path = erikng
12 | url = https://github.com/erikng/osxprofiles
13 | [submodule "poundbangbash/excel"]
14 | path = poundbangbash/excel
15 | url = https://gist.github.com/e5046be406fea966e7e5.git
16 | [submodule "poundbangbash/word"]
17 | path = poundbangbash/word
18 | url = https://gist.github.com/e22bc2dcd025a6406800.git
19 | [submodule "poundbangbash/onenote"]
20 | path = poundbangbash/onenote
21 | url = https://gist.github.com/6743bc02d59eb2b03f00.git
22 | [submodule "poundbangbash/powerpoint"]
23 | path = poundbangbash/powerpoint
24 | url = https://gist.github.com/d083e1a21ebd64682f13.git
25 | [submodule "poundbangbash/outlook1"]
26 | path = poundbangbash/outlook1
27 | url = https://gist.github.com/2e0527364f362ece1c21.git
28 | [submodule "poundbangbash/outlook2"]
29 | path = poundbangbash/outlook2
30 | url = https://gist.github.com/010988ecda36174cf0d3.git
31 | [submodule "rodchristiansen"]
32 | path = rodchristiansen
33 | url = https://github.com/rodchristiansen/Profiles.git
34 | [submodule "vmiller"]
35 | path = vmiller
36 | url = https://github.com/vmiller/profiles.git
37 | [submodule "opragel"]
38 | path = opragel
39 | url = https://github.com/opragel/profiles.git
40 | [submodule "poundbangbash/office2016"]
41 | path = poundbangbash/office2016
42 | url = https://gist.github.com/poundbangbash/58ec77648d3903c40332493bf260d901
43 | [submodule "mwohlgemuth"]
44 | path = mwohlgemuth
45 | url = https://github.com/mwohlgemuth/profiles.git
46 | [submodule "umeditor"]
47 | path = umeditor
48 | url = https://github.com/umeditor/profiles.git
49 | [submodule "apettinen"]
50 | path = apettinen
51 | url = https://github.com/apettinen/profiles.git
52 | [submodule "neilmartin83"]
53 | path = neilmartin83
54 | url = https://github.com/neilmartin83/configuration_profiles/
55 | [submodule "flammable"]
56 | path = flammable
57 | url = https://github.com/flammable/profiles
58 | [submodule "gmarnin"]
59 | path = gmarnin
60 | url = https://github.com/gmarnin/Profiles
61 |
--------------------------------------------------------------------------------
/clburlison/Disable_FUS_Menu_Item.mobileconfig:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | PayloadContent
6 |
7 |
8 | PayloadContent
9 |
10 | com.apple.mcxMenuExtras
11 |
12 | Forced
13 |
14 |
15 | mcx_preference_settings
16 |
17 | User.menu
18 |
19 | delaySeconds
20 | 2
21 |
22 |
23 |
24 | mcx_targets
25 |
26 | user
27 |
28 |
29 |
30 | PayloadEnabled
31 |
32 | PayloadIdentifier
33 | MCXToProfile.b7d9d40b-6bda-419e-9244-779d0a3fc690.alacarte.customsettings.de0fd95f60c3-20150224
34 | PayloadType
35 | com.apple.ManagedClient.preferences
36 | PayloadUUID
37 | 562365BC-9533-423C-97DF-3A74F42B69EB
38 | PayloadVersion
39 | 1
40 |
41 |
42 | PayloadDescription
43 | Configures Menu Items
44 | - Removes FUS Menu Item
45 |
46 | PayloadDisplayName
47 | Config: Menu Items
48 | PayloadIdentifier
49 | FUS_Menu_Item
50 | PayloadOrganization
51 | Your_Organisation
52 | PayloadRemovalDisallowed
53 |
54 | PayloadScope
55 | System
56 | PayloadType
57 | Configuration
58 | PayloadUUID
59 | FA363A48-7F07-4620-9CAD-319DD828F386
60 | PayloadVersion
61 | 1
62 |
63 |
--------------------------------------------------------------------------------
/clburlison/Geektool-login-item.mobileconfig:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | PayloadContent
6 |
7 |
8 | AutoLaunchedApplicationDictionary-managed
9 |
10 |
11 | Hide
12 |
13 | Path
14 | /Applications/GeekTool.app/Contents/PlugIns/GeekTool.prefPane/Contents/Resources/GeekTool Helper.app/
15 |
16 |
17 | PayloadDisplayName
18 | Login Items: Managed Items
19 | PayloadEnabled
20 |
21 | PayloadIdentifier
22 | MCXToProfile.b7f3d0a0-28cb-0131-a572-002500eedaae.alacarte.loginitems.f9328b50-28cb-0131-a574-002500eedaae.managed
23 | PayloadType
24 | com.apple.loginitems.managed
25 | PayloadUUID
26 | b384e3eb-4ed7-beda-cf28-fbf7865b12bf
27 | PayloadVersion
28 | 1
29 |
30 |
31 | DisableLoginItemsSuppression
32 |
33 | PayloadDisplayName
34 | Login Items: User Restrictions
35 | PayloadEnabled
36 |
37 | PayloadIdentifier
38 | MCXToProfile.b7f3d0a0-28cb-0131-a572-002500eedaae.alacarte.loginitems.f9328b50-28cb-0131-a574-002500eedaae.loginwindow
39 | PayloadType
40 | com.apple.loginwindow
41 | PayloadUUID
42 | 3d9ef9ea-33aa-48b0-1767-107f8c7d73d8
43 | PayloadVersion
44 | 1
45 |
46 |
47 | PayloadDescription
48 | We are going to add Geektool to the local login-items for all users
49 | PayloadDisplayName
50 | Geektool-login-item
51 | PayloadIdentifier
52 | Geektool-login-item
53 | PayloadOrganization
54 | Your_Organisation
55 | PayloadRemovalDisallowed
56 |
57 | PayloadScope
58 | System
59 | PayloadType
60 | Configuration
61 | PayloadUUID
62 | b7f3d0a0-28cb-0131-a572-002500eedaae
63 | PayloadVersion
64 | 1
65 |
66 |
67 |
--------------------------------------------------------------------------------
/clburlison/crypt.mobileconfig:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | PayloadOrganization
6 | Your Org Name
7 | PayloadDisplayName
8 | Crypt Settings
9 | PayloadScope
10 | System
11 | PayloadType
12 | Configuration
13 | PayloadRemovalDisallowed
14 |
15 | PayloadIdentifier
16 | 0fb741b3-309d-56ed-880b-f836bb383416
17 | PayloadContent
18 |
19 |
20 | PayloadOrganization
21 | Your Org Name
22 | PayloadDisplayName
23 | Crypt Settings
24 | PayloadIdentifier
25 | F9A5E8E1-3C08-4D32-94A5-325009F9C999
26 | PayloadType
27 | com.grahamgilbert.crypt
28 | PayloadUUID
29 | F9A5E8E1-3C08-4D32-94A5-325009F9C999
30 | ServerURL
31 | https://crypt.example.com
32 | SkipUsers
33 |
34 | admin
35 |
36 | RemovePlist
37 |
38 | RotateUsedKey
39 |
40 | ValidateKey
41 |
42 | OutputPath
43 | /var/root/crypt_output.plist
44 | KeyEscrowInterval
45 | 1
46 | PayloadEnabled
47 |
48 | PayloadDescription
49 | Crypt Settings
50 | PayloadVersion
51 | 1
52 |
53 |
54 | PayloadUUID
55 | 0fb741b3-309d-56ed-880b-f836bb383416
56 | PayloadEnabled
57 |
58 | PayloadDescription
59 |
60 | PayloadVersion
61 | 1
62 |
63 |