Home Services Work About Blog Contact Let's Talk
BlogPower Automate
Power Automate

Power Automate 2025 Wave 2: Every New Feature You Need to Know

Wave 2 at a Glance

Microsoft's Power Automate 2025 Wave 2 release plan covers features shipping between October 2025 and March 2026. The wave is the largest AI-focused update Power Automate has received — nearly every product area gained a Copilot-assisted capability, and several long-standing pain points in desktop automation and document processing were addressed with substantial engineering investment.

Key milestones by general availability (GA) date:

Release Plan

Features marked "Preview" in the release plan are available in your tenant but not covered by Microsoft SLAs. Use preview features in non-production environments until they reach GA status. The Power Platform admin centre shows which preview features are active in your tenant.

Copilot-Powered Flow Building

The headline feature of Wave 2 is the ability to describe a flow in plain English and have Copilot generate the full flow definition — trigger, actions, conditions, and expressions — ready to review and save. This is a step beyond the Wave 1 "Describe it to design it" capability, which only generated a starting trigger and the first action.

Wave 2 Copilot understands multi-step flows with branching logic. A prompt like "When a new item is added to a SharePoint list, check if the Status column is Approved, then send an email to the item creator and post a Teams message to the Approvals channel" now generates the complete flow, including the triggerOutputs() expressions for the SharePoint trigger and the correctly scoped Teams connector action.

What Copilot Generates Well

Where You Still Need to Intervene

Copilot struggles with flows requiring complex dynamic expressions, loops over arrays, or pagination patterns for large SharePoint list queries. Treat Copilot output as a 70% starting point — always review expressions and test with real data before deploying to production.

Power Automate expression — Copilot-assisted flow: get creator email from SharePoint item trigger
// Expression Copilot generates for "item creator email" from SharePoint trigger
triggerOutputs()?['body/Author/Email']

// Copilot-generated condition to check Status column value
@equals(triggerOutputs()?['body/Status/Value'], 'Approved')

// Dynamic Teams channel message body Copilot inserts
concat(
  'New approved item: ',
  triggerOutputs()?['body/Title'],
  ' — submitted by ',
  triggerOutputs()?['body/Author/DisplayName']
)
Copilot Tip

For best results, include the connector names in your prompt. Instead of "when a list item is added," say "when a SharePoint list item is added." Copilot uses connector keywords to select the correct trigger from ambiguous descriptions.

AI Builder Document Processing Improvements

AI Builder's document processing models (previously called Form Processing) received a significant accuracy overhaul in Wave 2. Microsoft retrained the underlying models with a larger multilingual dataset, delivering improvements particularly for invoices in non-English languages and for tables with merged cells — two failure modes that frustrated users in Wave 1.

New Prebuilt Models

Custom Model Accuracy

Custom document processing models now require a minimum of 5 sample documents (down from 15) to train, and Microsoft introduced an auto-label feature that suggests field bounding boxes based on the document structure. In internal testing, auto-labelled models achieved 85–92% field extraction accuracy after training on 10 documents — a meaningful improvement for organisations processing proprietary document formats.

Desktop Flow Recorder v2

Desktop Flow Recorder v2 is the most significant quality-of-life improvement for RPA practitioners in this wave. The original recorder captured actions at the UI element level with no understanding of intent, producing fragile flows that broke whenever the application changed its layout. Recorder v2 introduces semantic recording — it captures the user's intent (fill this field, click this button, read this value) and generates more resilient selectors.

What Changed

Migration Note

Existing desktop flows recorded with Recorder v1 continue to run unchanged. Recorder v2 is only used for new recordings. If you have critical v1 flows that rely on image-based actions, do not migrate them to v2 without thorough testing — the image-based fallback they depend on is not available in v2-generated flows.

New Connectors and Actions

Wave 2 delivered a meaningful batch of new connector actions across the most-used connectors in enterprise tenants.

SharePoint Connector

Microsoft Teams Connector

SAP Connector Updates

The SAP connector now supports RFC (Remote Function Call) with table parameters, enabling flows to read and write SAP tables directly without a BAPi wrapper. This unblocks several integration patterns — particularly for materials management and finance — that previously required custom SAP middleware.

Process Mining Updates

Process Mining (formerly Process Advisor) received a set of analytical capabilities in Wave 2 that close the gap between Microsoft's offering and specialised process mining tools like Celonis and UiPath Process Mining.

Bottleneck Detection

The new bottleneck detection feature automatically identifies the activities and handovers in a process that contribute most to cycle time. Instead of manually comparing case durations across variants, Process Mining now surfaces a ranked list of bottlenecks with median wait times and the percentage of cases affected. Each bottleneck links to the specific process variant where it occurs most frequently.

Variance Analysis

Variance analysis now lets you compare two process variants side-by-side — for example, cases that completed on time versus cases that were overdue — and highlights which activities, resources, or attributes differ between them. This replaces a previously manual analysis that required exporting data to Power BI.

Direct Integration with Power Automate

Process Mining can now trigger a Power Automate flow when a defined threshold is breached — for example, if the average approval wait time in a procurement process exceeds 48 hours, automatically send a notification to the process owner. This closes the loop between insight and action without requiring manual monitoring.

Enabling Wave 2 Features in Your Tenant

Not all Wave 2 features are on by default. Features in public preview must be explicitly enabled per environment in the Power Platform admin centre. GA features are enabled automatically, but some require admin opt-in before they appear in the flow designer.

Enabling Preview Features

  1. Navigate to the Power Platform admin centre (admin.powerplatform.microsoft.com).
  2. Select Environments and choose the environment where you want to enable the preview.
  3. Go to Settings > Features.
  4. Under the "Preview" section, toggle on the features you want — for example, "AI agent flows" or "Natural language approvals".
  5. Save. Changes take effect within a few minutes for new flow sessions.
Best Practice

Always enable preview features in a dedicated development or test environment first. Preview features may change breaking behaviour before reaching GA. Never enable preview features directly in your production environment — create a staging environment that mirrors production for preview testing.

Copilot Availability by Licence

Copilot in cloud flows requires a Power Automate Premium licence (previously Per Flow or Per User with Premium) or a Microsoft 365 Copilot licence. The basic Copilot experience (single-action suggestion) is available on the standard Power Automate licence, but the full multi-step flow generation described above requires Premium or Copilot.

What Comes in Wave 1 2026

Microsoft's release plan for Wave 1 2026 (April – September 2026) previews several capabilities that extend the AI agent story introduced in Wave 2.

AI Agent Flows

The most anticipated Wave 1 2026 feature is AI agent flows — flows that have a Copilot agent as the orchestrator rather than a fixed trigger-action sequence. Instead of a developer defining every step, the agent decides at runtime which actions to take based on the goal and the current state of the data. This is a fundamental shift from deterministic RPA to goal-directed automation.

In the Wave 2 preview available from January 2026, agent flows can be given a goal (e.g., "process all invoices in this SharePoint folder and create matching records in Dataverse") and a set of permitted actions (read files, create records, send email). The agent executes the steps, handles errors, and reports back — without the developer having to define every branch and error path explicitly.

Key Takeaways

Wave 2 Copilot generates complete multi-step flows from plain English — treat output as a 70% starting point and always review expressions before deploying.

AI Builder's document processing models are more accurate in Wave 2 and now include Bank Statement and Purchase Order prebuilt models — custom models need only 5 sample documents to train.

Desktop Flow Recorder v2 generates resilient multi-fallback selectors — migrate new recordings immediately but do not migrate existing image-based v1 flows without testing.

The new SharePoint batch update action eliminates the performance bottleneck of Apply to Each loops for bulk list operations.

Wave 1 2026 brings AI agent flows — goal-directed automation where the agent decides at runtime which actions to take, replacing fixed trigger-action sequences.

AT

Akshara Technologies

Power Automate & Microsoft 365 Specialists

We build and optimise Power Automate workflows for enterprises — from simple approval flows to complex RPA solutions and Process Mining implementations — across India, USA, UAE, and Australia.

Want to modernise your workflows?

Our Power Automate team helps organisations take full advantage of Wave 2 features — Copilot-assisted flows, AI Builder document processing, Desktop Flow Recorder v2, and Process Mining — without disrupting existing automations.

Start a Conversation View Power Automate Services

Related Articles