├── .gitattributes ├── .gitignore ├── CODE_OF_CONDUCT.md ├── INTUNE-MY-MACS-DOCUMENTATION.docx ├── INTUNE-MY-MACS-DOCUMENTATION.md ├── LICENSE ├── README.md ├── SECURITY.md ├── apps ├── app-utl-001-swift-dialog.pkg ├── app-utl-001-swift-dialog.xml ├── app-utl-002-dialog-onboarding.pkg ├── app-utl-002-dialog-onboarding.xml ├── app-utl-002-dialog-onboarding.zip ├── app-utl-002-dialog-onboarding_post.sh └── app-utl-002-dialog-onboarding_pre.sh ├── configurations ├── Secure Enterprise Browser │ ├── Secure Enterprise Browser.zip │ ├── pol-app-101-edge-level1.json │ ├── pol-app-101-edge-level1.xml │ └── readme.md ├── entra │ ├── cfg-idp-001-platform-sso.json │ └── cfg-idp-001-platform-sso.xml └── intune │ ├── cfg-sec-001-login-window.mobileconfig │ ├── cfg-sec-001-login-window.xml │ ├── cfg-sec-002-screensaver-idle.mobileconfig │ ├── cfg-sec-002-screensaver-idle.xml │ ├── cmp-cmp-001-macos-baseline.json │ ├── cmp-cmp-001-macos-baseline.xml │ ├── pol-app-100-office.json │ ├── pol-app-100-office.xml │ ├── pol-sec-001-filevault.json │ ├── pol-sec-001-filevault.xml │ ├── pol-sec-002-firewall.json │ ├── pol-sec-002-firewall.xml │ ├── pol-sec-003-gatekeeper.json │ ├── pol-sec-003-gatekeeper.xml │ ├── pol-sec-004-guest-account.json │ ├── pol-sec-004-guest-account.xml │ ├── pol-sec-005-screensaver.json │ ├── pol-sec-005-screensaver.xml │ ├── pol-sec-006-restrictions.json │ ├── pol-sec-006-restrictions.xml │ ├── pol-sys-100-ntp.json │ ├── pol-sys-100-ntp.xml │ ├── pol-sys-101-login-items.json │ ├── pol-sys-101-login-items.xml │ ├── pol-sys-102-power.json │ ├── pol-sys-102-power.xml │ ├── pol-sys-103-software-update.json │ ├── pol-sys-103-software-update.xml │ ├── pol-sys-104-ddm-passcode.json │ ├── pol-sys-104-ddm-passcode.xml │ ├── pol-sys-105-enrollment-restriction.json │ └── pol-sys-105-enrollment-restriction.xml ├── custom attributes ├── cat-sys-100-compatibility-checker.xml ├── cat-sys-100-compatibility-checker.zsh ├── cat-sys-101-intune-agent-version.sh └── cat-sys-101-intune-agent-version.xml ├── mainScript.ps1 ├── mde ├── README.md ├── pol-mde-001-settings-catalog.json ├── pol-mde-001-settings-catalog.xml ├── scr-mde-100-install-defender.xml └── scr-mde-100-install-defender.zsh ├── scripts └── intune │ ├── scr-app-100-install-company-portal.sh │ ├── scr-app-100-install-company-portal.xml │ ├── scr-app-101-office-defaults.sh │ ├── scr-app-101-office-defaults.xml │ ├── scr-app-102-install-remote-help.sh │ ├── scr-app-102-install-remote-help.xml │ ├── scr-app-103-install-intunelogwatch.xml │ ├── scr-app-103-install-intunelogwatch.zsh │ ├── scr-sec-100-install-escrow-buddy.sh │ ├── scr-sec-100-install-escrow-buddy.xml │ ├── scr-sys-100-device-rename.sh │ ├── scr-sys-100-device-rename.xml │ ├── scr-sys-101-configure-dock.sh │ └── scr-sys-101-configure-dock.xml ├── standards ├── manifest-standard.prd └── policy-naming-standard.prd └── tools ├── Export-MacOSConfigPolicies.ps1 ├── Find-DuplicatePayloadSettings.ps1 ├── Generate-ConfigurationDocumentation.py ├── Get-IntuneAgentProcessingOrder.ps1 ├── Get-MacOSGlobalAssignments.ps1 └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /INTUNE-MY-MACS-DOCUMENTATION.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/INTUNE-MY-MACS-DOCUMENTATION.docx -------------------------------------------------------------------------------- /INTUNE-MY-MACS-DOCUMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/INTUNE-MY-MACS-DOCUMENTATION.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/SECURITY.md -------------------------------------------------------------------------------- /apps/app-utl-001-swift-dialog.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/apps/app-utl-001-swift-dialog.pkg -------------------------------------------------------------------------------- /apps/app-utl-001-swift-dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/apps/app-utl-001-swift-dialog.xml -------------------------------------------------------------------------------- /apps/app-utl-002-dialog-onboarding.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/apps/app-utl-002-dialog-onboarding.pkg -------------------------------------------------------------------------------- /apps/app-utl-002-dialog-onboarding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/apps/app-utl-002-dialog-onboarding.xml -------------------------------------------------------------------------------- /apps/app-utl-002-dialog-onboarding.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/apps/app-utl-002-dialog-onboarding.zip -------------------------------------------------------------------------------- /apps/app-utl-002-dialog-onboarding_post.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/apps/app-utl-002-dialog-onboarding_post.sh -------------------------------------------------------------------------------- /apps/app-utl-002-dialog-onboarding_pre.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/apps/app-utl-002-dialog-onboarding_pre.sh -------------------------------------------------------------------------------- /configurations/Secure Enterprise Browser/Secure Enterprise Browser.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/configurations/Secure Enterprise Browser/Secure Enterprise Browser.zip -------------------------------------------------------------------------------- /configurations/Secure Enterprise Browser/pol-app-101-edge-level1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/configurations/Secure Enterprise Browser/pol-app-101-edge-level1.json -------------------------------------------------------------------------------- /configurations/Secure Enterprise Browser/pol-app-101-edge-level1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/configurations/Secure Enterprise Browser/pol-app-101-edge-level1.xml -------------------------------------------------------------------------------- /configurations/Secure Enterprise Browser/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/configurations/Secure Enterprise Browser/readme.md -------------------------------------------------------------------------------- /configurations/entra/cfg-idp-001-platform-sso.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/configurations/entra/cfg-idp-001-platform-sso.json -------------------------------------------------------------------------------- /configurations/entra/cfg-idp-001-platform-sso.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/configurations/entra/cfg-idp-001-platform-sso.xml -------------------------------------------------------------------------------- /configurations/intune/cfg-sec-001-login-window.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/configurations/intune/cfg-sec-001-login-window.mobileconfig -------------------------------------------------------------------------------- /configurations/intune/cfg-sec-001-login-window.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/configurations/intune/cfg-sec-001-login-window.xml -------------------------------------------------------------------------------- /configurations/intune/cfg-sec-002-screensaver-idle.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/configurations/intune/cfg-sec-002-screensaver-idle.mobileconfig -------------------------------------------------------------------------------- /configurations/intune/cfg-sec-002-screensaver-idle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/configurations/intune/cfg-sec-002-screensaver-idle.xml -------------------------------------------------------------------------------- /configurations/intune/cmp-cmp-001-macos-baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/configurations/intune/cmp-cmp-001-macos-baseline.json -------------------------------------------------------------------------------- /configurations/intune/cmp-cmp-001-macos-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/configurations/intune/cmp-cmp-001-macos-baseline.xml -------------------------------------------------------------------------------- /configurations/intune/pol-app-100-office.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/configurations/intune/pol-app-100-office.json -------------------------------------------------------------------------------- /configurations/intune/pol-app-100-office.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/configurations/intune/pol-app-100-office.xml -------------------------------------------------------------------------------- /configurations/intune/pol-sec-001-filevault.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/configurations/intune/pol-sec-001-filevault.json -------------------------------------------------------------------------------- /configurations/intune/pol-sec-001-filevault.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/configurations/intune/pol-sec-001-filevault.xml -------------------------------------------------------------------------------- /configurations/intune/pol-sec-002-firewall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/configurations/intune/pol-sec-002-firewall.json -------------------------------------------------------------------------------- /configurations/intune/pol-sec-002-firewall.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/configurations/intune/pol-sec-002-firewall.xml -------------------------------------------------------------------------------- /configurations/intune/pol-sec-003-gatekeeper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/configurations/intune/pol-sec-003-gatekeeper.json -------------------------------------------------------------------------------- /configurations/intune/pol-sec-003-gatekeeper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/configurations/intune/pol-sec-003-gatekeeper.xml -------------------------------------------------------------------------------- /configurations/intune/pol-sec-004-guest-account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/configurations/intune/pol-sec-004-guest-account.json -------------------------------------------------------------------------------- /configurations/intune/pol-sec-004-guest-account.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/configurations/intune/pol-sec-004-guest-account.xml -------------------------------------------------------------------------------- /configurations/intune/pol-sec-005-screensaver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/configurations/intune/pol-sec-005-screensaver.json -------------------------------------------------------------------------------- /configurations/intune/pol-sec-005-screensaver.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/configurations/intune/pol-sec-005-screensaver.xml -------------------------------------------------------------------------------- /configurations/intune/pol-sec-006-restrictions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/configurations/intune/pol-sec-006-restrictions.json -------------------------------------------------------------------------------- /configurations/intune/pol-sec-006-restrictions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/configurations/intune/pol-sec-006-restrictions.xml -------------------------------------------------------------------------------- /configurations/intune/pol-sys-100-ntp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/configurations/intune/pol-sys-100-ntp.json -------------------------------------------------------------------------------- /configurations/intune/pol-sys-100-ntp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/configurations/intune/pol-sys-100-ntp.xml -------------------------------------------------------------------------------- /configurations/intune/pol-sys-101-login-items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/configurations/intune/pol-sys-101-login-items.json -------------------------------------------------------------------------------- /configurations/intune/pol-sys-101-login-items.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/configurations/intune/pol-sys-101-login-items.xml -------------------------------------------------------------------------------- /configurations/intune/pol-sys-102-power.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/configurations/intune/pol-sys-102-power.json -------------------------------------------------------------------------------- /configurations/intune/pol-sys-102-power.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/configurations/intune/pol-sys-102-power.xml -------------------------------------------------------------------------------- /configurations/intune/pol-sys-103-software-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/configurations/intune/pol-sys-103-software-update.json -------------------------------------------------------------------------------- /configurations/intune/pol-sys-103-software-update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/configurations/intune/pol-sys-103-software-update.xml -------------------------------------------------------------------------------- /configurations/intune/pol-sys-104-ddm-passcode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/configurations/intune/pol-sys-104-ddm-passcode.json -------------------------------------------------------------------------------- /configurations/intune/pol-sys-104-ddm-passcode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/configurations/intune/pol-sys-104-ddm-passcode.xml -------------------------------------------------------------------------------- /configurations/intune/pol-sys-105-enrollment-restriction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/configurations/intune/pol-sys-105-enrollment-restriction.json -------------------------------------------------------------------------------- /configurations/intune/pol-sys-105-enrollment-restriction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/configurations/intune/pol-sys-105-enrollment-restriction.xml -------------------------------------------------------------------------------- /custom attributes/cat-sys-100-compatibility-checker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/custom attributes/cat-sys-100-compatibility-checker.xml -------------------------------------------------------------------------------- /custom attributes/cat-sys-100-compatibility-checker.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/custom attributes/cat-sys-100-compatibility-checker.zsh -------------------------------------------------------------------------------- /custom attributes/cat-sys-101-intune-agent-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/custom attributes/cat-sys-101-intune-agent-version.sh -------------------------------------------------------------------------------- /custom attributes/cat-sys-101-intune-agent-version.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/custom attributes/cat-sys-101-intune-agent-version.xml -------------------------------------------------------------------------------- /mainScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/mainScript.ps1 -------------------------------------------------------------------------------- /mde/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/mde/README.md -------------------------------------------------------------------------------- /mde/pol-mde-001-settings-catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/mde/pol-mde-001-settings-catalog.json -------------------------------------------------------------------------------- /mde/pol-mde-001-settings-catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/mde/pol-mde-001-settings-catalog.xml -------------------------------------------------------------------------------- /mde/scr-mde-100-install-defender.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/mde/scr-mde-100-install-defender.xml -------------------------------------------------------------------------------- /mde/scr-mde-100-install-defender.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/mde/scr-mde-100-install-defender.zsh -------------------------------------------------------------------------------- /scripts/intune/scr-app-100-install-company-portal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/scripts/intune/scr-app-100-install-company-portal.sh -------------------------------------------------------------------------------- /scripts/intune/scr-app-100-install-company-portal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/scripts/intune/scr-app-100-install-company-portal.xml -------------------------------------------------------------------------------- /scripts/intune/scr-app-101-office-defaults.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/scripts/intune/scr-app-101-office-defaults.sh -------------------------------------------------------------------------------- /scripts/intune/scr-app-101-office-defaults.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/scripts/intune/scr-app-101-office-defaults.xml -------------------------------------------------------------------------------- /scripts/intune/scr-app-102-install-remote-help.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/scripts/intune/scr-app-102-install-remote-help.sh -------------------------------------------------------------------------------- /scripts/intune/scr-app-102-install-remote-help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/scripts/intune/scr-app-102-install-remote-help.xml -------------------------------------------------------------------------------- /scripts/intune/scr-app-103-install-intunelogwatch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/scripts/intune/scr-app-103-install-intunelogwatch.xml -------------------------------------------------------------------------------- /scripts/intune/scr-app-103-install-intunelogwatch.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/scripts/intune/scr-app-103-install-intunelogwatch.zsh -------------------------------------------------------------------------------- /scripts/intune/scr-sec-100-install-escrow-buddy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/scripts/intune/scr-sec-100-install-escrow-buddy.sh -------------------------------------------------------------------------------- /scripts/intune/scr-sec-100-install-escrow-buddy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/scripts/intune/scr-sec-100-install-escrow-buddy.xml -------------------------------------------------------------------------------- /scripts/intune/scr-sys-100-device-rename.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/scripts/intune/scr-sys-100-device-rename.sh -------------------------------------------------------------------------------- /scripts/intune/scr-sys-100-device-rename.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/scripts/intune/scr-sys-100-device-rename.xml -------------------------------------------------------------------------------- /scripts/intune/scr-sys-101-configure-dock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/scripts/intune/scr-sys-101-configure-dock.sh -------------------------------------------------------------------------------- /scripts/intune/scr-sys-101-configure-dock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/scripts/intune/scr-sys-101-configure-dock.xml -------------------------------------------------------------------------------- /standards/manifest-standard.prd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/standards/manifest-standard.prd -------------------------------------------------------------------------------- /standards/policy-naming-standard.prd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/standards/policy-naming-standard.prd -------------------------------------------------------------------------------- /tools/Export-MacOSConfigPolicies.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/tools/Export-MacOSConfigPolicies.ps1 -------------------------------------------------------------------------------- /tools/Find-DuplicatePayloadSettings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/tools/Find-DuplicatePayloadSettings.ps1 -------------------------------------------------------------------------------- /tools/Generate-ConfigurationDocumentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/tools/Generate-ConfigurationDocumentation.py -------------------------------------------------------------------------------- /tools/Get-IntuneAgentProcessingOrder.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/tools/Get-IntuneAgentProcessingOrder.ps1 -------------------------------------------------------------------------------- /tools/Get-MacOSGlobalAssignments.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/tools/Get-MacOSGlobalAssignments.ps1 -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/intune-my-macs/HEAD/tools/README.md --------------------------------------------------------------------------------