HomeNewsletterCommunityToolsArchiveBlogAboutQuick Links Subscribe free
← Back to Blog
Copilot Microsoft ScoutAutopilot AgentBuild 2026Entra IDOpenClawM365 E5AI Agents

Microsoft Scout — The Always-On Autopilot Agent for M365 (Build 2026)

IA
Imran Awan
27 June 2026

Microsoft announced Scout at Build 2026 on June 2 — and it represents a genuine shift in what enterprise AI means for IT admins. Where Copilot waits for you to ask it something, Scout runs continuously in the background, monitors your work environment, and takes actions on your behalf. Microsoft calls it their first "Autopilot agent". For IT teams, that means an entirely new governance and identity surface to manage.

Current availability: Scout is in Frontier preview (Windows 11 + macOS) as of June 2026. Public preview is scheduled for August 2026. Requires M365 E5 + GitHub Copilot Business or Enterprise licence + Intune-managed device + Frontier preview enrollment + opt-in attestation.

Scout vs Copilot — What Actually Changes

The fundamental difference is the execution model. Copilot is reactive — you open it, ask a question, get an answer, and it stops. Scout is proactive — it has a schedule, a goal, and its own Entra identity, and it keeps working when you close your laptop.

DimensionCopilotScout (Autopilot Agent)
Execution modelReactive — responds to promptsProactive — runs continuously on schedule
IdentityRuns as the signed-in userOwn Entra identity per agent
Works when device is offNoYes — cloud-hosted task execution
Can run shell commandsNoYes — PowerShell, git, curl, code
Browser controlLimitedFull browser task execution
Purview DLP respectedYesYes — sensitivity labels enforced
Required licenceM365 Copilot add-onM365 E5 + GitHub Copilot Business/Enterprise
Audit trailCopilot interaction logsFull Entra sign-in + M365 unified audit log

How Scout Works — The OpenClaw Engine

Scout runs on OpenClaw, the open-source autonomous agent framework that accumulated 180,000 GitHub stars within three months of its January 2026 launch. OpenClaw enables desktop UI automation — Scout can interact with any Windows application, including legacy systems that expose no modern API, by operating through the UI layer as a human would.

Early integrations demonstrated at Build 2026 included SAP, ServiceNow, and mainframe terminal emulators — systems that have no REST API, controllable purely through UI automation.

Scout connects natively to Teams, Outlook, OneDrive, and SharePoint, and can also access local files, run shell commands (PowerShell, git, curl), control the browser, and execute code or Automations and Skills on the local machine.

Enterprise Identity Model — Every Agent Gets Its Own Entra ID

This is the most important governance point for IT admins. Scout does not run under the user's identity or a shared service account. Every Scout agent instance is provisioned with its own Entra managed identity — scoped to the specific task it is authorised to perform.

Why this matters for IT admins: Entra agent identities appear in your Entra ID tenant like service principals. They show up in sign-in logs, can be scoped with Conditional Access policies, and can be assigned only the permissions they need. This is far more governable than a shared service account — but it means you now have agent identities to manage alongside human identities.
01-ListScoutAgentIdentities.ps1
# List all Scout agent identities in your Entra tenant
# Requires Microsoft Graph PowerShell SDK
Connect-MgGraph -Scopes "Application.Read.All"

# Scout agents appear as service principals with a specific tag
Get-MgServicePrincipal -Filter "tags/any(t:t eq 'MicrosoftScoutAgent')" |
  Select-Object DisplayName, AppId, CreatedDateTime, ServicePrincipalType |
  Format-Table -AutoSize

Deployment Requirements Checklist

RequirementDetailsHow to verify
M365 E5 licenceRequired — E3 not sufficient for new Scout enrollmentsM365 admin centre → Licences
GitHub Copilot Business or EnterpriseRequired for Scout installationGitHub admin console → Billing
Intune-managed deviceDevice must be enrolled in Intune (not just Entra registered)dsregcmd /status → MDMEnrollmentURL
Frontier preview enrollmentTenant must be in M365 Frontier programmeM365 admin centre → Frontier
Opt-in attestationAdmin must complete attestation acknowledging autonomous agent governance responsibilitiesScout admin centre → Attestation

Auditing Scout Activity

02-AuditScoutActivity.ps1
# Pull Scout agent activity from the M365 Unified Audit Log
Connect-ExchangeOnline

$auditResults = Search-UnifiedAuditLog `
  -StartDate (Get-Date).AddDays(-7) `
  -EndDate (Get-Date) `
  -Operations "ScoutAgentTaskExecuted","ScoutAgentFileAccessed","ScoutAgentEmailSent" `
  -ResultSize 5000

$auditResults | Select-Object CreationDate, UserIds, Operations,
  @{n="Detail";e={($_.AuditData | ConvertFrom-Json).ObjectId}} |
  Export-Csv ".\scout-audit-7days.csv" -NoTypeInformation

Write-Host "Exported $($auditResults.Count) Scout events to scout-audit-7days.csv"

What IT Admins Should Do Now

Scout is in Frontier preview — most organisations are not yet affected. But the governance infrastructure you put in place now will determine how smoothly Scout rolls out when it reaches public preview in August 2026 and general availability later this year. Recommended preparation steps:

  1. Review your Entra ID service principal governance — do you have processes for reviewing new service principals? Scout agent identities will appear here.
  2. Ensure Microsoft Purview sensitivity labels are deployed and applied to data Scout will touch — Teams, SharePoint, OneDrive. Scout respects labels; unprotected content is unprotected.
  3. Review your Conditional Access policies for service principals — scope them to require MFA-equivalent assurance for agent identities.
  4. Check your Intune device compliance policies — Scout requires an Intune-managed device. Non-compliant devices won't be eligible.
  5. Assess your E5 licence position — Scout requires E5. If you're on E3, build this into your next licence review.
MVP perspective — Rudy Ooms (Call4Cloud): Rudy has noted that the per-agent Entra identity model is the right architectural choice — it enables least-privilege scoping that a shared service account never could. His recommendation: start building your Entra governance for non-human identities now, not when Scout goes GA. The patterns are the same as managing Managed Identities in Azure, just applied to M365 agents.
MVP perspective — Jan Ketil Skanke (CloudWay): Jan has written about the Intune device management requirement for Scout — specifically that only devices with full MDM enrollment qualify, not just Entra registered devices. This means any BYOD device that is Entra registered but not Intune enrolled will not support Scout. Factor this into your device management strategy if you have a mixed fleet.

Official Resources

Share this post
LinkedIn X / Twitter Reddit Bluesky

More from EndpointWeekly

Intune
Security Copilot for Intune — 4 AI Agents Deep Dive (Policy,…
Microsoft Security Copilot now has four dedicated Intune agents: Policy Configuration,…
Copilot
Copilot Cowork Is Now GA — Metered Billing, Spending Limits & IT…
Copilot Cowork went GA on June 16 2026 with usage-based billing — enterprises now pay per…
Autopilot
Windows Autopilot: Complete Device Lifecycle Management Guide
Zero-touch provisioning from factory to fully managed desktop. Complete guide to…