Skip to content

Microsoft Intune Integration

Microsoft Intune integrates with Big Picture to deploy Win32 apps when tenant policy is set to MANAGED_BY_IT mode. This integration enables IT teams to control deployment timing and methods while maintaining vendor-controlled release governance.


Intune integration provides artifacts and metadata for Intune Win32 app deployment. Big Picture continues to govern releases and update policies, while Intune handles deployment scheduling and execution through the Intune Management Extension (IME).


  1. Tenant policy — Tenant policy set to MANAGED_BY_IT mode
  2. Intune configuration — Intune tenant configured for Win32 app deployment
  3. API access — Service account with license:read and mirrors:read scopes
  4. Network access — Intune can access Big Picture API and artifact URLs

  1. Tenant policy — Vendor sets tenant policy to MANAGED_BY_IT
  2. Release publishing — Vendor publishes releases through Big Picture
  3. Metadata query — Intune queries Big Picture for available releases
  4. Artifact packaging — Intune packages artifacts as Win32 apps
  5. Deployment — Intune deploys apps using Intune Management Extension

Enterprise customers require IT-controlled deployment for security and compliance. Intune integration enables IT teams to deploy vendor software through familiar tools.

Regulated environments require strict deployment controls. Intune integration enables IT to manage deployments while maintaining vendor-controlled release governance.

Organizations with existing Intune infrastructure can integrate Big Picture without changing deployment workflows.


  • Update decisions API — Query available releases and artifacts
  • Artifact metadata — Retrieve artifact URLs, checksums, and platform information
  • Win32 app packaging — Package artifacts for Intune deployment
  • Mirror support — Support for self-hosted artifact mirrors

Configure tenant policy to enable MANAGED_BY_IT mode:

Terminal window
curl -X PUT "${BP_BASE_URL}/v1/tenants/${TENANT_ID}/policy" \
-H "Authorization: Bearer $BP_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"update_action": "MANAGED_BY_IT"
}'

Package Big Picture artifacts as Intune Win32 apps:

  1. Download artifact from Big Picture
  2. Create Intune Win32 app package
  3. Configure installation and uninstallation commands
  4. Upload to Intune

Detailed step-by-step guides for Intune integration are planned. These guides will include:

  • Complete Intune Win32 app packaging procedures
  • Automated metadata query and packaging workflows
  • Mirror configuration for regulated environments
  • Deployment testing and validation

For now, see the Endpoint Management Tools overview for general integration patterns.