├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ └── script-request.md ├── pull_request_template.md ├── scripts │ ├── check-script-updates-v2.js │ └── check-script-updates.js └── workflows │ ├── claude-code-review.yml │ ├── claude.yml │ ├── daily-script-notifications.yml │ └── script-analysis.yml ├── .gitignore ├── Azure_Deployment.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── azure-deployment-templates.json ├── azure-templates ├── add-devices-to-groups-from-csv-azure-deployment.json ├── app-deployment-failure-alert-azure-deployment.json ├── apple-token-expiration-alert-azure-deployment.json ├── backup-bitlocker-keys-to-keyvault-azure-deployment.json ├── check-apple-token-validity-azure-deployment.json ├── check-bitlocker-keys-azure-deployment.json ├── check-filevault-keys-azure-deployment.json ├── check-policy-changes-azure-deployment.json ├── check-unassigned-policies-azure-deployment.json ├── cleanup-autopilot-devices-azure-deployment.json ├── create-app-based-groups-azure-deployment.json ├── detect-antivirus-definitions-outdated-azure-deployment.json ├── detect-disk-cleanup-needed-azure-deployment.json ├── device-compliance-drift-alert-azure-deployment.json ├── get-app-installation-status-report-azure-deployment.json ├── get-application-inventory-report-azure-deployment.json ├── get-device-compliance-report-azure-deployment.json ├── get-devices-by-scopetag-azure-deployment.json ├── get-duplicate-applications-azure-deployment.json ├── get-endpoint-analytics-report-azure-deployment.json ├── get-intune-audit-logs-azure-deployment.json ├── get-intune-role-assignments-azure-deployment.json ├── get-maa-compliance-report-azure-deployment.json ├── get-stale-devices-azure-deployment.json ├── maa-pending-requests-monitor-azure-deployment.json ├── remediate-antivirus-definitions-azure-deployment.json ├── remediate-disk-cleanup-azure-deployment.json ├── restart-devices-azure-deployment.json ├── rotate-bitlocker-keys-azure-deployment.json ├── rotate-macos-laps-passwords-azure-deployment.json ├── stale-device-cleanup-alert-azure-deployment.json ├── sync-devices-azure-deployment.json └── wipe-devices-azure-deployment.json ├── grant-permissions-managed-identity.ps1 ├── permissions.json ├── scripts ├── apps │ ├── get-app-installation-status-report.ps1 │ ├── get-application-inventory-report.ps1 │ └── get-duplicate-applications.ps1 ├── compliance │ ├── get-device-compliance-report.ps1 │ └── get-maa-compliance-report.ps1 ├── devices │ ├── add-devices-to-groups-from-csv.ps1 │ ├── cleanup-autopilot-devices.ps1 │ ├── create-app-based-groups.ps1 │ ├── get-devices-by-scopetag.ps1 │ └── get-stale-devices.ps1 ├── monitoring │ ├── check-apple-token-validity.ps1 │ ├── check-applecare-warranty-status.sh │ ├── check-available-msupdate-updates.sh │ ├── check-bitlocker-keys.ps1 │ ├── check-filevault-keys.ps1 │ ├── check-msupdate-status.sh │ ├── check-network-requirements.sh │ ├── check-policy-changes.ps1 │ ├── check-unassigned-policies.ps1 │ ├── check-xprotect-status.sh │ ├── get-endpoint-analytics-report.ps1 │ ├── get-intune-audit-logs.ps1 │ ├── last-reboot.sh │ └── local-admins.sh ├── notification │ ├── README.md │ ├── app-deployment-failure-alert.ps1 │ ├── apple-token-expiration-alert.ps1 │ ├── device-compliance-drift-alert.ps1 │ ├── maa-pending-requests-monitor.ps1 │ └── stale-device-cleanup-alert.ps1 ├── operational │ ├── restart-devices.ps1 │ ├── sync-devices.ps1 │ └── wipe-devices.ps1 ├── remediation │ ├── antivirus-definition-updates │ │ ├── detect-antivirus-definitions-outdated.ps1 │ │ └── remediate-antivirus-definitions.ps1 │ └── disk-cleanup │ │ ├── detect-disk-cleanup-needed.ps1 │ │ └── remediate-disk-cleanup.ps1 └── security │ ├── backup-bitlocker-keys-to-keyvault.ps1 │ ├── get-intune-role-assignments.ps1 │ ├── rotate-bitlocker-keys.ps1 │ └── rotate-macos-laps-passwords.ps1 ├── templates ├── NOTIFICATION_TEMPLATE_GUIDE.md ├── README.md ├── REMEDIATION_TEMPLATE_GUIDE.md ├── macos-script-template.sh ├── notification-script-template.ps1 ├── remediation-action-template.ps1 ├── remediation-detection-template.ps1 └── script-template.ps1 └── testresults.json /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/script-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/.github/ISSUE_TEMPLATE/script-request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/scripts/check-script-updates-v2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/.github/scripts/check-script-updates-v2.js -------------------------------------------------------------------------------- /.github/scripts/check-script-updates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/.github/scripts/check-script-updates.js -------------------------------------------------------------------------------- /.github/workflows/claude-code-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/.github/workflows/claude-code-review.yml -------------------------------------------------------------------------------- /.github/workflows/claude.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/.github/workflows/claude.yml -------------------------------------------------------------------------------- /.github/workflows/daily-script-notifications.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/.github/workflows/daily-script-notifications.yml -------------------------------------------------------------------------------- /.github/workflows/script-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/.github/workflows/script-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | CLAUDE.md 2 | 3 | .claude/ 4 | 5 | .mcp* -------------------------------------------------------------------------------- /Azure_Deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/Azure_Deployment.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/README.md -------------------------------------------------------------------------------- /azure-deployment-templates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/azure-deployment-templates.json -------------------------------------------------------------------------------- /azure-templates/add-devices-to-groups-from-csv-azure-deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/azure-templates/add-devices-to-groups-from-csv-azure-deployment.json -------------------------------------------------------------------------------- /azure-templates/app-deployment-failure-alert-azure-deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/azure-templates/app-deployment-failure-alert-azure-deployment.json -------------------------------------------------------------------------------- /azure-templates/apple-token-expiration-alert-azure-deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/azure-templates/apple-token-expiration-alert-azure-deployment.json -------------------------------------------------------------------------------- /azure-templates/backup-bitlocker-keys-to-keyvault-azure-deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/azure-templates/backup-bitlocker-keys-to-keyvault-azure-deployment.json -------------------------------------------------------------------------------- /azure-templates/check-apple-token-validity-azure-deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/azure-templates/check-apple-token-validity-azure-deployment.json -------------------------------------------------------------------------------- /azure-templates/check-bitlocker-keys-azure-deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/azure-templates/check-bitlocker-keys-azure-deployment.json -------------------------------------------------------------------------------- /azure-templates/check-filevault-keys-azure-deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/azure-templates/check-filevault-keys-azure-deployment.json -------------------------------------------------------------------------------- /azure-templates/check-policy-changes-azure-deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/azure-templates/check-policy-changes-azure-deployment.json -------------------------------------------------------------------------------- /azure-templates/check-unassigned-policies-azure-deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/azure-templates/check-unassigned-policies-azure-deployment.json -------------------------------------------------------------------------------- /azure-templates/cleanup-autopilot-devices-azure-deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/azure-templates/cleanup-autopilot-devices-azure-deployment.json -------------------------------------------------------------------------------- /azure-templates/create-app-based-groups-azure-deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/azure-templates/create-app-based-groups-azure-deployment.json -------------------------------------------------------------------------------- /azure-templates/detect-antivirus-definitions-outdated-azure-deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/azure-templates/detect-antivirus-definitions-outdated-azure-deployment.json -------------------------------------------------------------------------------- /azure-templates/detect-disk-cleanup-needed-azure-deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/azure-templates/detect-disk-cleanup-needed-azure-deployment.json -------------------------------------------------------------------------------- /azure-templates/device-compliance-drift-alert-azure-deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/azure-templates/device-compliance-drift-alert-azure-deployment.json -------------------------------------------------------------------------------- /azure-templates/get-app-installation-status-report-azure-deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/azure-templates/get-app-installation-status-report-azure-deployment.json -------------------------------------------------------------------------------- /azure-templates/get-application-inventory-report-azure-deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/azure-templates/get-application-inventory-report-azure-deployment.json -------------------------------------------------------------------------------- /azure-templates/get-device-compliance-report-azure-deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/azure-templates/get-device-compliance-report-azure-deployment.json -------------------------------------------------------------------------------- /azure-templates/get-devices-by-scopetag-azure-deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/azure-templates/get-devices-by-scopetag-azure-deployment.json -------------------------------------------------------------------------------- /azure-templates/get-duplicate-applications-azure-deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/azure-templates/get-duplicate-applications-azure-deployment.json -------------------------------------------------------------------------------- /azure-templates/get-endpoint-analytics-report-azure-deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/azure-templates/get-endpoint-analytics-report-azure-deployment.json -------------------------------------------------------------------------------- /azure-templates/get-intune-audit-logs-azure-deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/azure-templates/get-intune-audit-logs-azure-deployment.json -------------------------------------------------------------------------------- /azure-templates/get-intune-role-assignments-azure-deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/azure-templates/get-intune-role-assignments-azure-deployment.json -------------------------------------------------------------------------------- /azure-templates/get-maa-compliance-report-azure-deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/azure-templates/get-maa-compliance-report-azure-deployment.json -------------------------------------------------------------------------------- /azure-templates/get-stale-devices-azure-deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/azure-templates/get-stale-devices-azure-deployment.json -------------------------------------------------------------------------------- /azure-templates/maa-pending-requests-monitor-azure-deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/azure-templates/maa-pending-requests-monitor-azure-deployment.json -------------------------------------------------------------------------------- /azure-templates/remediate-antivirus-definitions-azure-deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/azure-templates/remediate-antivirus-definitions-azure-deployment.json -------------------------------------------------------------------------------- /azure-templates/remediate-disk-cleanup-azure-deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/azure-templates/remediate-disk-cleanup-azure-deployment.json -------------------------------------------------------------------------------- /azure-templates/restart-devices-azure-deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/azure-templates/restart-devices-azure-deployment.json -------------------------------------------------------------------------------- /azure-templates/rotate-bitlocker-keys-azure-deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/azure-templates/rotate-bitlocker-keys-azure-deployment.json -------------------------------------------------------------------------------- /azure-templates/rotate-macos-laps-passwords-azure-deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/azure-templates/rotate-macos-laps-passwords-azure-deployment.json -------------------------------------------------------------------------------- /azure-templates/stale-device-cleanup-alert-azure-deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/azure-templates/stale-device-cleanup-alert-azure-deployment.json -------------------------------------------------------------------------------- /azure-templates/sync-devices-azure-deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/azure-templates/sync-devices-azure-deployment.json -------------------------------------------------------------------------------- /azure-templates/wipe-devices-azure-deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/azure-templates/wipe-devices-azure-deployment.json -------------------------------------------------------------------------------- /grant-permissions-managed-identity.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/grant-permissions-managed-identity.ps1 -------------------------------------------------------------------------------- /permissions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/permissions.json -------------------------------------------------------------------------------- /scripts/apps/get-app-installation-status-report.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/scripts/apps/get-app-installation-status-report.ps1 -------------------------------------------------------------------------------- /scripts/apps/get-application-inventory-report.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/scripts/apps/get-application-inventory-report.ps1 -------------------------------------------------------------------------------- /scripts/apps/get-duplicate-applications.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/scripts/apps/get-duplicate-applications.ps1 -------------------------------------------------------------------------------- /scripts/compliance/get-device-compliance-report.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/scripts/compliance/get-device-compliance-report.ps1 -------------------------------------------------------------------------------- /scripts/compliance/get-maa-compliance-report.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/scripts/compliance/get-maa-compliance-report.ps1 -------------------------------------------------------------------------------- /scripts/devices/add-devices-to-groups-from-csv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/scripts/devices/add-devices-to-groups-from-csv.ps1 -------------------------------------------------------------------------------- /scripts/devices/cleanup-autopilot-devices.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/scripts/devices/cleanup-autopilot-devices.ps1 -------------------------------------------------------------------------------- /scripts/devices/create-app-based-groups.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/scripts/devices/create-app-based-groups.ps1 -------------------------------------------------------------------------------- /scripts/devices/get-devices-by-scopetag.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/scripts/devices/get-devices-by-scopetag.ps1 -------------------------------------------------------------------------------- /scripts/devices/get-stale-devices.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/scripts/devices/get-stale-devices.ps1 -------------------------------------------------------------------------------- /scripts/monitoring/check-apple-token-validity.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/scripts/monitoring/check-apple-token-validity.ps1 -------------------------------------------------------------------------------- /scripts/monitoring/check-applecare-warranty-status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/scripts/monitoring/check-applecare-warranty-status.sh -------------------------------------------------------------------------------- /scripts/monitoring/check-available-msupdate-updates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/scripts/monitoring/check-available-msupdate-updates.sh -------------------------------------------------------------------------------- /scripts/monitoring/check-bitlocker-keys.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/scripts/monitoring/check-bitlocker-keys.ps1 -------------------------------------------------------------------------------- /scripts/monitoring/check-filevault-keys.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/scripts/monitoring/check-filevault-keys.ps1 -------------------------------------------------------------------------------- /scripts/monitoring/check-msupdate-status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/scripts/monitoring/check-msupdate-status.sh -------------------------------------------------------------------------------- /scripts/monitoring/check-network-requirements.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/scripts/monitoring/check-network-requirements.sh -------------------------------------------------------------------------------- /scripts/monitoring/check-policy-changes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/scripts/monitoring/check-policy-changes.ps1 -------------------------------------------------------------------------------- /scripts/monitoring/check-unassigned-policies.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/scripts/monitoring/check-unassigned-policies.ps1 -------------------------------------------------------------------------------- /scripts/monitoring/check-xprotect-status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/scripts/monitoring/check-xprotect-status.sh -------------------------------------------------------------------------------- /scripts/monitoring/get-endpoint-analytics-report.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/scripts/monitoring/get-endpoint-analytics-report.ps1 -------------------------------------------------------------------------------- /scripts/monitoring/get-intune-audit-logs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/scripts/monitoring/get-intune-audit-logs.ps1 -------------------------------------------------------------------------------- /scripts/monitoring/last-reboot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/scripts/monitoring/last-reboot.sh -------------------------------------------------------------------------------- /scripts/monitoring/local-admins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/scripts/monitoring/local-admins.sh -------------------------------------------------------------------------------- /scripts/notification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/scripts/notification/README.md -------------------------------------------------------------------------------- /scripts/notification/app-deployment-failure-alert.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/scripts/notification/app-deployment-failure-alert.ps1 -------------------------------------------------------------------------------- /scripts/notification/apple-token-expiration-alert.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/scripts/notification/apple-token-expiration-alert.ps1 -------------------------------------------------------------------------------- /scripts/notification/device-compliance-drift-alert.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/scripts/notification/device-compliance-drift-alert.ps1 -------------------------------------------------------------------------------- /scripts/notification/maa-pending-requests-monitor.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/scripts/notification/maa-pending-requests-monitor.ps1 -------------------------------------------------------------------------------- /scripts/notification/stale-device-cleanup-alert.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/scripts/notification/stale-device-cleanup-alert.ps1 -------------------------------------------------------------------------------- /scripts/operational/restart-devices.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/scripts/operational/restart-devices.ps1 -------------------------------------------------------------------------------- /scripts/operational/sync-devices.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/scripts/operational/sync-devices.ps1 -------------------------------------------------------------------------------- /scripts/operational/wipe-devices.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/scripts/operational/wipe-devices.ps1 -------------------------------------------------------------------------------- /scripts/remediation/antivirus-definition-updates/detect-antivirus-definitions-outdated.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/scripts/remediation/antivirus-definition-updates/detect-antivirus-definitions-outdated.ps1 -------------------------------------------------------------------------------- /scripts/remediation/antivirus-definition-updates/remediate-antivirus-definitions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/scripts/remediation/antivirus-definition-updates/remediate-antivirus-definitions.ps1 -------------------------------------------------------------------------------- /scripts/remediation/disk-cleanup/detect-disk-cleanup-needed.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/scripts/remediation/disk-cleanup/detect-disk-cleanup-needed.ps1 -------------------------------------------------------------------------------- /scripts/remediation/disk-cleanup/remediate-disk-cleanup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/scripts/remediation/disk-cleanup/remediate-disk-cleanup.ps1 -------------------------------------------------------------------------------- /scripts/security/backup-bitlocker-keys-to-keyvault.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/scripts/security/backup-bitlocker-keys-to-keyvault.ps1 -------------------------------------------------------------------------------- /scripts/security/get-intune-role-assignments.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/scripts/security/get-intune-role-assignments.ps1 -------------------------------------------------------------------------------- /scripts/security/rotate-bitlocker-keys.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/scripts/security/rotate-bitlocker-keys.ps1 -------------------------------------------------------------------------------- /scripts/security/rotate-macos-laps-passwords.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/scripts/security/rotate-macos-laps-passwords.ps1 -------------------------------------------------------------------------------- /templates/NOTIFICATION_TEMPLATE_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/templates/NOTIFICATION_TEMPLATE_GUIDE.md -------------------------------------------------------------------------------- /templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/templates/README.md -------------------------------------------------------------------------------- /templates/REMEDIATION_TEMPLATE_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/templates/REMEDIATION_TEMPLATE_GUIDE.md -------------------------------------------------------------------------------- /templates/macos-script-template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/templates/macos-script-template.sh -------------------------------------------------------------------------------- /templates/notification-script-template.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/templates/notification-script-template.ps1 -------------------------------------------------------------------------------- /templates/remediation-action-template.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/templates/remediation-action-template.ps1 -------------------------------------------------------------------------------- /templates/remediation-detection-template.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/templates/remediation-detection-template.ps1 -------------------------------------------------------------------------------- /templates/script-template.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/templates/script-template.ps1 -------------------------------------------------------------------------------- /testresults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkocde/IntuneAutomation/HEAD/testresults.json --------------------------------------------------------------------------------