Implement multi-admin approval to prevent single-person risk for critical operations like device wipes, role assignments, and script deployments.
In the Intune admin center, navigate to Tenant administration > Multi-admin approval. Click Enable multi-admin approval.
Configure approval workflows for these critical operations:
{
"approvalWorkflows": [
{
"operation": "Role management",
"description": "Creating, modifying, or deleting Intune roles",
"enabled": true,
"requiredApprovers": 1,
"approverGroups": ["Security-Admins", "IT-Directors"]
},
{
"operation": "Device wipe",
"description": "Factory reset or selective wipe operations",
"enabled": true,
"requiredApprovers": 1,
"approverGroups": ["Device-Managers", "Security-Team"]
},
{
"operation": "Script deployment",
"description": "PowerShell script deployment to devices",
"enabled": true,
"requiredApprovers": 2,
"approverGroups": ["Security-Admins", "Change-Advisory-Board"]
},
{
"operation": "Compliance policy changes",
"description": "Modifications to device compliance policies",
"enabled": true,
"requiredApprovers": 1,
"approverGroups": ["Compliance-Officers", "Security-Team"]
}
]
}
Configure approver settings:
- Click Settings in the multi-admin approval section
- Set approval timeout: 24 hours for standard operations, 4 hours for urgent requests
- Enable email notifications for pending approvals
- Configure emergency override procedures
Set up emergency access procedures:
{
"emergencyAccess": {
"breakGlassAccounts": [
"emergency-admin-1@company.onmicrosoft.com",
"emergency-admin-2@company.onmicrosoft.com"
],
"emergencyBypassEnabled": true,
"postEmergencyReviewRequired": true,
"emergencyJustificationRequired": true,
"auditLogRetention": "P2555D"
}
}
Test the approval workflow:
- As a regular admin, attempt to wipe a test device
- Verify the operation is blocked and approval request is sent
- As an approver, review and approve the request
- Confirm the original operation can now proceed
Warning: Ensure you have sufficient approvers available during business hours and establish clear emergency procedures for after-hours critical operations.
Verification: Monitor approval requests in Tenant administration > Multi-admin approval > Pending requests and review the audit logs for all approved operations.