This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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>PayloadContent</key> | |
<array> | |
<dict> | |
<key>MultipleSessionEnabled</key> | |
<true/> | |
<key>PayloadDisplayName</key> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
# Stolen entirely from Michael Lynn | |
# https://gist.github.com/pudquick/9683c333e73a82379b8e377eb2e6fc41 | |
# Edited for Python 3 | |
import struct | |
import objc | |
from Cocoa import NSAppleEventDescriptor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Mon Aug 10 09:59:31 Starting enrollment configuration helper... | |
Mon Aug 10 09:59:31 Waiting for setup assistant... | |
Mon Aug 10 09:59:37 Setup assistant is up. | |
Mon Aug 10 09:59:37 OS version: 10.15.6 | |
Mon Aug 10 09:59:37 OS build: 19G73 | |
Mon Aug 10 09:59:37 Starting cycle 1... | |
Mon Aug 10 09:59:37 Checking power metrics... | |
Mon Aug 10 09:59:37 CPU thermal level: 60 | |
Mon Aug 10 09:59:37 IO thermal level: 10 | |
Mon Aug 10 09:59:38 Fan RPM: 3725.709961 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Where to find info and how to report on system extensions in macOS Catalina+ | |
# Staged system extensions location in folder based on unique ID | |
/Library/SystemExtensions/ | |
# Info on each | |
/Library/SystemExtensions/db.plist | |
Includes... | |
- state (enabled, activated, etc.) | |
- associated launchd plists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Approved PPPC MDM overrides aggregated list | |
/Library/Application Support/com.apple.TCC/MDMOverrides.plist | |
# KEXT policies database | |
sudo sqlite3 /private/var/db/SystemPolicyConfiguration/KextPolicy | |
# Approved by MDM | |
SELECT team_id, bundle_id, allowed FROM kext_policy_mdm; | |
# Approved locally |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Preference key reference | |
# https://gitlab.com/orchardandgrove-oss/NoMADLogin-AD/wikis/Configuration/preferences | |
domain="domain.com" | |
background_image="/path/to/image.png" | |
keychain_add="TRUE" | |
logo="/path/to/logo.png" | |
# Set default AD domain |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Preference key reference | |
# https://gitlab.com/orchardandgrove-oss/NoMADLogin-AD/wikis/Configuration/preferences | |
domain="domain.com" | |
background_image="/path/to/image.png" | |
logo="/path/to/logo.png" | |
# Set default AD domain | |
defaults write /Library/Preferences/menu.nomad.login.ad.plist ADDomain "$domain" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+---------------------------------------------------------------------------------------------------------------------------+----------+ | |
| app_name | count(*) | | |
+---------------------------------------------------------------------------------------------------------------------------+----------+ | |
| Self Service | 6241 | | |
| Drive | 5252 | | |
| NWEA Testing | 5191 | | |
| Book Creator | 5167 | | |
| TestNav |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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>class</key> | |
<string>evaluate-mechanisms</string> | |
<key>comment</key> | |
<string>Login mechanism based rule. Not for general use, yet.</string> | |
<key>created</key> | |
<real>520882179.73855001</real> |