Sr. Content Developer at Microsoft, working remotely in PA, TechBash conference organizer, former Microsoft MVP, Husband, Dad and Geek.
157224 stories
·
33 followers

Introducing Muse Spark 1.1

1 Share

Introducing Muse Spark 1.1

Following Muse Spark in April, here's Muse Spark 1.1 - the first Spark model to offer an API. Meta claim significant improvements in agentic tool calling and computer use.

There are a lot more details are in the Muse Spark 1.1 Evaluation Report.

I had a few days of preview access which was long enough to put together llm-meta-ai, a new plugin for LLM providing CLI (and Python library) access to the model. Here's how to try that out:

uv tool install llm
llm install llm-meta-ai
llm keys set meta-ai
# paste API key here
llm -m meta-ai/muse-spark-1.1 "Generate an SVG of a pelican riding a bicycle"

Here's that pelican transcript:

The bicycle is the correct shape. The pelican is a little blocky but still recognizable as a pelican.

Tags: ai, generative-ai, llms, llm, meta, pelican-riding-a-bicycle, llm-release

Read the whole story
alvinashcraft
35 seconds ago
reply
Pennsylvania, USA
Share this story
Delete

Introducing a way to reflect on how you use Claude

1 Share
Introducing a way to reflect on how you use Claude
Read the whole story
alvinashcraft
42 seconds ago
reply
Pennsylvania, USA
Share this story
Delete

Ollama: all aboard open models

1 Share
Serving 8.9 million developers, Ollama has raised $88M from Benchmark, Theory Ventures, 8VC, Y Combinator, and many incredible angel investors.
Read the whole story
alvinashcraft
47 seconds ago
reply
Pennsylvania, USA
Share this story
Delete

Agent Harness: Scaling the claw or harness capabilities

1 Share

Part 3 of Build your own claw and harness with Microsoft Agent Framework.

In Part 2 our personal finance assistant learned to work with your data safely: it reads your portfolio, asks before it trades, and remembers what matters across sessions. It’s useful – but everything it knows is baked into one prompt, it does its work one step at a time, and it can’t reach past the file-access tools to actually reorganize anything.

This part makes the claw more capable along four axes:

  1. Skills – package know-how (valuation, risk-scoring) as discoverable files the agent loads on demand, including centrally-managed Foundry skills.
  2. Shell – shell tools, to tidy and restructure files.
  3. CodeAct – let the agent write and run code to compute answers it can’t just look up.
  4. Background agents – fan work out to sub-agents that run concurrently, then aggregate.

As before, we only supply what makes our agent ours; the harness provides the machinery. Let’s take them in turn.

Teach it on demand: skills

Stuffing every instruction the assistant might ever need into its system prompt doesn’t scale – it bloats the context and dilutes its focus. Skills solve this: each skill is a small SKILL.md file with a name, a one-line description, and instructions (plus optional reference docs and scripts). The agent sees only the names and descriptions up front, and progressively loads a skill’s full content only when a request matches it.

Our claw gets two file-based skills under the skills/ folder. The skills instruct the agent in how to do risk scoring and valuations.

For more information on skills see Give Your Agents Domain Expertise with Agent Skills in Microsoft Agent Framework and What’s New in Agent Skills: Code Skills, Script Execution, and Approval for Python

Usage

The harness turns a skills provider on by default (it discovers SKILL.md files from the working directory). Here we build our own provider so we can point it at this sample’s skills/ folder and run the skills’ scripts.

In .NET, compose a provider with AgentSkillsProviderBuilder and turn the default one off:

var skillsProvider = new AgentSkillsProviderBuilder()
    // File-based skills; SubprocessScriptRunner runs their Python scripts.
    .UseFileSkills([skillsDir], scriptRunner: SubprocessScriptRunner.RunAsync)
    .Build();

AIAgent agent = chatClient.AsHarnessAgent(new HarnessAgentOptions
{
    DisableAgentSkillsProvider = true,         // we supply our own
    AIContextProviders = [skillsProvider],
    // … file access, tools …
});

In Python, build a SkillsProvider from the same folder and pass it in:

from agent_framework import SkillsProvider

skills_provider = SkillsProvider.from_paths(
    skill_paths=[str(skills_dir)],
    script_runner=subprocess_script_runner,  # lets the skills' scripts run
)

agent = create_harness_agent(
    client=client,
    skills_provider=skills_provider,
    # … file access, tools …
)

Now “Value MSFT for me” makes the agent load the valuation skill, read its guide, run its script, and report a fair-value estimate – and “How risky is my portfolio?” pulls in risk-scoring instead. Nothing about valuation or risk was in the system prompt.

Skills you manage centrally: Foundry skills

File-based skills ship with the agent – to change one, you redeploy. Foundry skills flip that around: skills are published and updated centrally in your Foundry project, and the agent picks them up at runtime. The valuation method can evolve without anyone touching the claw.

Because it needs a Foundry endpoint, we make it opt-in – the sample runs fine on the local skills alone.

For how to publish and manage Foundry skills, see the Foundry skills docs.

In .NET, Foundry skills are discovered live from a Foundry Toolbox MCP endpoint; just add an MCP source to the same builder:

// Opt-in: only when a Toolbox endpoint is configured.
if (!string.IsNullOrWhiteSpace(toolboxUrl))
{
    var (mcpClient, _) = await FoundrySkills.ConnectAsync(toolboxUrl, credential);
    skillsBuilder.UseMcpSkills(mcpClient);   // fold them into the same provider
}

In Python, it’s the same story: connect to the Foundry Toolbox MCP endpoint and add an MCPSkillsSource alongside the local FileSkillsSource:

from agent_framework import (
    AggregatingSkillsSource, DeduplicatingSkillsSource,
    FileSkillsSource, MCPSkillsSource, SkillsProvider,
)

sources = [FileSkillsSource(str(skills_dir), script_runner=subprocess_script_runner)]

# Opt-in: only when a Toolbox endpoint is configured.
if toolbox_url:
    session = await _connect_foundry_toolbox(stack, toolbox_url)
    sources.append(MCPSkillsSource(client=session))

source = sources[0] if len(sources) == 1 else AggregatingSkillsSource(sources)
skills_provider = SkillsProvider(DeduplicatingSkillsSource(source))

Either way the agent sees one unified set of skills; it neither knows nor cares which ones came from disk and which were managed in Foundry.

Skills aren’t only for domain how-tos – a skill can just as easily carry general rules about how the agent should behave. Because Foundry skills update centrally, governance rules like this are exactly the kind of thing you’d manage there: tighten the policy once and every running claw picks it up, no redeploy. To try it, publish a skill named financial-agent-rules to your Foundry toolbox:

---
name: financial-agent-rules
description: General rules about how you should behave as a financial agent. Use this skill for all requests.
---

You should politely refuse to answer any questions unrelated to finance, managing portfolios or managing confirmations.

Because its description says “Use this skill for all requests”, the agent loads it on every turn. Once it’s published and Foundry skills are enabled (set FOUNDRY_TOOLBOX_MCP_SERVER_URL), ask the claw something off-topic like “What’s the capital of France?” and it will politely decline and steer you back to finance.

Reach into the file system: shell

File access lets the claw read and write individual files, but reorganizing a messy folder – moving, renaming, batching – is exactly what a shell is for. The user’s trade confirmations pile up as a flat heap of inconsistently-named files:

working/confirmations/
  trade confirmation 1.txt
  conf_AAPL.txt
  copy of trade 3.txt
  SPY sell.txt
  …

The harness can expose a shell as an (approval-gated) run_shell tool. Letting an agent run shell commands is powerful and dangerous, so we hem it in two ways: a confined working directory (every command is re-anchored to the confirmations vault and can’t escape it) and a deny-list policy that pre-filters obviously destructive commands.

In .NET, configure a LocalShellExecutor and pass it as the ShellExecutor:

await using var shell = new LocalShellExecutor(new LocalShellExecutorOptions
{
    WorkingDirectory = vaultDir,
    ConfineWorkingDirectory = true,                 // can't escape the vault
    Policy = new ShellPolicy(denyList:
    [
        @"\brm\s+-rf\b", @"\bsudo\b", @":\(\)\s*\{", @"\bmkfs\b", @">\s*/dev/sd",
    ]),
    Timeout = TimeSpan.FromSeconds(15),
});

AIAgent agent = chatClient.AsHarnessAgent(new HarnessAgentOptions
{
    ShellExecutor = shell,   // exposed as the approval-gated run_shell tool
    // … skills, file access, tools …
});

In Python, a LocalShellTool plays the same role:

from agent_framework_tools.shell import LocalShellTool, ShellPolicy

shell = LocalShellTool(
    workdir=str(vault_dir),
    confine_workdir=True,                            # can't escape the vault
    policy=ShellPolicy(denylist=[
        r"\brm\s+-rf\b", r"\bsudo\b", r":\(\)\s*\{", r"\bmkfs\b", r">\s*/dev/sd",
    ]),
    timeout=15,
)

agent = create_harness_agent(
    client=client,
    shell_executor=shell,   # exposed as the approval-gated run_shell tool
    # … skills, file access, tools …
)

The policy is a UX guardrail, not a security boundary. A deny-list catches obvious mistakes, but it won’t stop a determined or cleverly-worded command. Real isolation comes from the confined working directory and the approval prompt – and for untrusted input, a sandboxed executor like DockerShellExecutor (.NET) or DockerShellTool (Python).

Now “Tidy up my trade confirmations” lets the agent inspect the folder, propose a plan, and (with your approval on each command) move the files into a year/month layout renamed to YYYY-MM-DD_TICKER_BUY|SELL.txt.

Let it compute: CodeAct

Some questions aren’t a lookup – they’re a calculation. “What’s my portfolio worth?” or “what was my return on this position?” are better answered by running a little code than by asking the model to do arithmetic in its head. CodeAct gives the agent a sandboxed interpreter it can write and run code in.

CodeAct runs model-authored code in a sandbox, and we wire it in as a context provider in both languages.

In .NET, CodeAct uses Hyperlight (a micro-VM, so it needs hardware virtualization). The guest module path is resolved automatically from the Hyperlight.HyperlightSandbox.Guest.Python NuGet package:

using HyperlightSandbox.Guest.Python;
using Microsoft.Agents.AI.Hyperlight;

var codeAct = new HyperlightCodeActProvider(
    HyperlightCodeActProviderOptions.CreateForWasm(PythonGuestModule.GetModulePath()));

AIAgent agent = chatClient.AsHarnessAgent(new HarnessAgentOptions
{
    AIContextProviders = [skillsProvider, codeAct],
    // … shell, file access, tools …
});

In Python, Monty is a pure, cross-platform interpreter – no hypervisor required – added as a context provider:

from agent_framework_monty import MontyCodeActProvider

context_providers = [skills_provider, MontyCodeActProvider(approval_mode="never_require")]

agent = create_harness_agent(
    client=client,
    context_providers=context_providers,
    # … shell, file access, tools …
)

With CodeAct on, “Work out the total value of my portfolio” lets the agent read the holdings, write a few lines of Python to multiply shares by price and sum them, run it, and report the result – arithmetic it can show its working for, rather than guess.

For more ideas on how to use CodeAct, read CodeAct in Agent Framework: Faster Agents with Fewer Model Turns

Do many things at once: background agents

Asking “Research MSFT, NVDA and SPY” one ticker at a time is slow, and folding all that web searching into the main agent muddies its context. The harness supports background agents: sub-agents you hand to the claw so it can delegate units of work that run concurrently and report back.

We build a lean, web-search-only research agent – a plain chat-client agent with just the web search tool (no harness machinery needed):

// ResearchAgent.Create(...)
AIAgent research = chatClient.AsAIAgent(
    name: "TickerResearchAgent",
    description: "Searches the web for recent news about a single stock ticker.",
    instructions: "You research a single ticker and return 3-4 factual bullet points.",
    tools: [new HostedWebSearchTool()]);   // the only tool it needs

Then we hand it to the main claw via BackgroundAgents:

AIAgent agent = chatClient.AsHarnessAgent(new HarnessAgentOptions
{
    BackgroundAgents = [research],   // exposes the background_agents_* tools
    // … skills, shell, file access, tools …
});

In Python it’s the background_agents argument:

research_agent = Agent(
    client,
    name="TickerResearchAgent",
    description="Searches the web for recent news about a single stock ticker.",
    instructions="You research a single ticker and return 3-4 factual bullet points.",
    tools=[client.get_web_search_tool()],   # the only tool it needs
)

agent = create_harness_agent(
    client=client,
    background_agents=[research_agent],   # exposes the background_agents_* tools
    # … skills, shell, file access, tools …
)

This gives the main agent a set of background_agents_* tools: it can start a research task per ticker, let them run in parallel, check on them, and collect the results – then summarize all three together. The fan-out is the agent’s decision; the harness handles the plumbing.

Run it

.NET

cd dotnet
dotnet run --project samples/02-agents/Harness/BuildYourOwnClaw/Claw_Step03_ScalingCapabilities

Python

uv run python/samples/02-agents/harness/build_your_own_claw/claw_step03_scaling_capabilities.py

Then try these in order (the sample starts in execute mode – quick lookups don’t need a plan):

  1. Value MSFT for me. – the agent loads the valuation skill, runs its script, and reports a

fair-value estimate.

  1. How risky is my portfolio? – it reads portfolio.csv and loads the risk-scoring skill.
  2. /mode plan, then Tidy up my trade confirmations. – switching to plan mode first makes the agent inspect working/confirmations/ and propose a reorganization plan before touching anything; once you approve it switches to execute and uses the shell to move and rename the files, prompting you to approve each command.
  1. Work out the total value of my portfolio. – it writes and runs Python to compute the answer.
  1. Research MSFT, NVDA and SPY and summarize the latest news. – it fans the tickers out to the background research agent and aggregates the findings.
  1. What's the capital of France? – with the financial-agent-rules Foundry skill published and enabled (see below), the agent loads it, recognizes the question is off-topic, and politely declines, steering you back to finance.

To enable the opt-in Foundry skills: set FOUNDRY_TOOLBOX_MCP_SERVER_URL.

The runnable samples

Use these building blocks in your own agent

As always, none of this is locked inside the harness. Each capability is a plain context provider or an executor/tool you can pick up on its own. Here’s where to find them:

Feature .NET (type — namespace) Python (import)
Skills AgentSkillsProvider / AgentSkillsProviderBuilderMicrosoft.Agents.AI (MCP skills via Microsoft.Agents.AI.Mcp) from agent_framework import SkillsProvider, MCPSkillsSource
Shell LocalShellExecutor / ShellPolicyMicrosoft.Agents.AI.Tools.Shell from agent_framework_tools.shell import LocalShellTool, ShellPolicy
CodeAct HyperlightCodeActProviderMicrosoft.Agents.AI.Hyperlight from agent_framework_monty import MontyCodeActProvider
Background agents BackgroundAgentsProviderMicrosoft.Agents.AI from agent_framework import BackgroundAgentsProvider

In .NET, skills and background agents ship in the Microsoft.Agents.AI package, the shell in Microsoft.Agents.AI.Tools.Shell, and Hyperlight CodeAct in Microsoft.Agents.AI.Hyperlight. In Python, skills and background agents come from agent-framework, the shell from agent-framework-tools, and Monty CodeAct from agent-framework-monty. The providers plug in through an agent’s context providers (and the shell as an executor) – the same wiring the harness does on your behalf.

What’s next

Our claw can now teach itself new skills, restructure files, compute answers it writes itself, and work in parallel. In the final part we make it production-ready: observability with traces and logs, governance and data protection, evaluation, and deployment as a hosted Foundry agent.

📚 The series

Part of Build your own claw with Microsoft Agent Framework:

The post Agent Harness: Scaling the claw or harness capabilities appeared first on Microsoft Agent Framework.

Read the whole story
alvinashcraft
59 seconds ago
reply
Pennsylvania, USA
Share this story
Delete

Foundry IQ is now in Copilot Studio: Bring your enterprise data to every agent conversation

1 Share

Your AI agents are only as smart as the data they can access

Enterprise teams building Copilot agents face a familiar challenge: connecting agents to organizational knowledge without compromising security, governance, or answer quality. Foundry IQ solves this by providing a unified knowledge layer that sits between your data sources and your agent—delivering 54% better response relevance while keeping enterprise compliance built in.

What Foundry IQ Brings to Your Copilot Agent

Enterprise organizations need a specific set of capabilities to safely deploy AI agents in production, security, compliance, governance, and operational reliability. Foundry IQ is built to meet exactly those requirements. With Foundry IQ, you can create Knowledge Bases. These Knowledge Bases come with enterprise readiness built in, such as Customer-Managed Keys (CMK) for data encryption, ACLs for fine-grained access control, network isolation, Microsoft Entra ID integration, compliance with standards such as FedRAMP and SOC2 and others, the full set of capabilities any organization needs to deploy AI agents safely in production. Learn more about Foundry IQ (Azure AI Search) security capabilities → https://learn.microsoft.com/en-us/azure/search/search-security-overview

When you connect a Knowledge Base to your Copilot agent, it leverages the advanced retrieval capabilities that Foundry IQ brings, including agentic retrieval (automatic query planning that federates across multiple knowledge sources in parallel), iterative query planning and semantic ranking (relevance scoring that goes far beyond keyword matching). The result is a 54% average improvement in response relevance compared to traditional RAG approaches, more accurate, grounded answers for your users (For more details: Foundry IQ: Improve recall by up to 54% with knowledge bases | Microsoft Community Hub)

For Developers & End Users

For Developers

Today, developers can select one of their existing Foundry IQ Knowledge Bases to connect to a Copilot agent, giving their organization's users access to enterprise data safely, with permissions and governance already built in. This ensures that each user only sees the data they are authorized to access, and that every answer returned is grounded in the right, relevant content, no additional configuration needed on the user side

For End Users

End users get access to their organization's enterprise data safely and without any extra work on their end, no need to worry about permissions, data sources, or configurations. Just ask, and your Copilot agent returns accurate, grounded answers with inline citations, from the right sources, respecting what each user is allowed to see.

What Do I Need to Do? Step-by-Step

Prerequisites

Before getting started, make sure you have:

  • An active Microsoft Foundry connection
  • At least one Knowledge Base already created in Foundry IQ
  • An agent created in the new experience. Learn more in Create an agent

1.- Select Microsoft IQ in your Copilot agent settings

    • Open your agent in Copilot Studio.
    • Select the Build tab.
    • In the components panel, select Microsoft IQ to open the Add Microsoft IQ dialog.
    • Navigate to your Copilot agent configuration and select the Microsoft IQ option.

2.- Select Foundry IQ

3.- Select your Foundry IQ connection

Choose the Foundry IQ connection you want to use for this agent.

4.- Select a Knowledge Base

Pick the Knowledge Base you want your agent to use as its knowledge source.

 

5.- Get your agent ready with instructions

6.- Chat with your data

Your agent is now grounded in your enterprise Knowledge Base. Now you can start a conversation and explore your data!

 

Get Started: Try Foundry IQ in Copilot Studio: Connect to Foundry IQ from an agent (preview) - Microsoft Copilot Studio (new experience) | Microsoft Learn. Learn more about Foundry IQ retrieval capabilities: https://aka.ms/FoundryIQ

 

Read the whole story
alvinashcraft
7 hours ago
reply
Pennsylvania, USA
Share this story
Delete

Windows 365 for Agents: A secured execution environment for AI agents

1 Share

AI agents are rapidly evolving from answering questions to performing tasks across enterprise systems. As organizations move from experimentation to production, one question continues to rise to the top for security leaders: how do you run agents securely at scale?

Today, many agents operate in fragmented environments: local machines, shared virtual machines, or unmanaged cloud infrastructure. That can make it hard to consistently enforce identity, apply policies, and maintain the visibility security teams need.

Windows 365 for Agents changes that.

A Cloud PC for enterprise agents, with security built-in

Windows 365 for Agents provides secured, managed Cloud PCs built for AI agents. As your organization governs and protects your human users today, Windows 365 for Agents enables you to apply the same enterprise security and compliance controls to agentic workloads.

Windows 365 for Agents works with Microsoft Entra, Microsoft Intune, Microsoft Defender, Microsoft Purview, and Microsoft Agent 3651 to provide identity, device management, security, and data governance capabilities for agentic workloads. Agents are designed to operate within enterprise security and compliance boundaries, running in a managed environment with identity, compliance, and security controls.

These core security tenets make it possible.

1. Reduced identity risk with distinct agent identity

Agents running in Windows 365 for Agents are provisioned with their own identity in Microsoft Entra, separate from any human user.

When an agent is hired, a unique agent identity is automatically assigned, helping ensure:

  • Every action is attributable to a specific agent
  • Permissions can be scoped precisely
  • Access can be revoked when necessary

This separation is foundational to Zero Trust. It reduces identity crossover risks and helps ensure agents operate only with the permissions they are explicitly granted. Agents can be governed with full lifecycle management, role-based access control, and auditability built in.

With Entra Conditional Access, organizations can enforce access policies by allowing access to organizational resources only when the Windows 365 for Agents Cloud PC is compliant with the organization’s security requirements. This helps ensure agents access enterprise resources only from managed and compliant Cloud PCs.

By combining identity-based access control with Intune device compliance, organizations can extend Microsoft’s Zero Trust policy engine to agents with the same rigor used for human users.

2. Reduced access risk with agent-only access

Windows 365 for Agents Cloud PCs are reserved exclusively for agents and run on isolated and enterprise-managed compute environments built for agent operations. By providing agents with a dedicated and contained execution environment, organizations can mitigate risks such as privilege escalation, accidental human-agent crossover, and lateral movement across shared accounts. IT administrators can further reinforce these boundaries through Intune provisioning policies that assign Cloud PCs only to agent users, helping ensure these environments are used for their intended purpose.

3. Consistent security and compliance enforcement

Every Windows 365 for Agents Cloud PC is Entra-joined and Intune-enrolled. Such Cloud PCs are managed by Microsoft Intune1, applying the same security posture your organization already relies on for employee devices.

That means:

  • Security baselines and compliance policies can be applied from the moment of provisioning
  • Configuration, hardening, and updates are centrally managed

Agents inherit endpoint security controls, including antivirus, encryption, and device compliance checks. Because these Cloud PCs are managed like any other endpoint, you can extend your existing security investments directly to agentic workloads, simplifying operations while strengthening protection and governance.

4. Network protection with Global Secure Access

Windows 365 for Agents also extends agent security to how agents access the network. Windows 365 for Agents integrates with Microsoft Entra Global Secure Access (GSA) to provide an identity-driven network security layer for agents. This helps organizations apply the same Zero Trust principles they already use for users and devices to agent traffic.

With GSA, organizations can route internet traffic through secure, policy-enforced profiles to help protect agents from malicious destinations, risky connections, and unsafe web activity. Security teams can apply controls for web content filtering, URL-based access policies, and inline threat protection.

By combining network signals with identity and device context, organizations can extend Zero Trust protection beyond authentication and into every network connection an agent makes, while maintaining full visibility into how agents interact with enterprise and external resources.

Read our network security with Global Secure Access learn article to learn more.

5. Governance and visibility into Agent Activity

Security is more than prevention; it is also about governance, visibility, and control. By integrating with Microsoft Agent 3651, organizations gain visibility into agent activity and can apply governance and policy controls across agent execution environments. Windows 365 for Agents is exposed as a model context protocol (MCP) server in Agent 365, and the telemetry flows into the tools your security teams already use such as Microsoft Defender and Microsoft Purview.

Resilience against threats with Microsoft Defender

Agent activity integrates into Microsoft Defender's AI agent inventory and protection, letting security administrators discover Agent 365 enabled agents in your estate. For agents, Defender offers:

  • Advanced hunting across all agent activity
  • Traceability of agent identity, tools, and actions
  • Threat detection and investigation workflows

Protection of sensitive data with Microsoft Purview1

On the data side, Microsoft Purview extends your existing security and compliance controls to agentic workloads.

  • Data Security Posture Management (DSPM) for AI continuously assesses how agents interact with your data and helps you evaluate alignment with your policies.
  • Activity Explorer delivers granular visibility into agent data usage, including what was accessed, classified, or shared, so sensitive information stays within your policy boundaries.
  • Existing sensitivity labels, Data Loss Prevention (DLP), and retention policies apply to agent actions similar to human users.
  • Insider Risk Management (IRM) detects risky agent behaviors, identifies elevated risk levels, and prioritizes investigations before sensitive data is exposed or misused.

Together, Agent 365, Defender, and Purview provide organizations with governance, visibility, and security capabilities for agent activity on Windows 365 for Agents Cloud PCs.

This Windows 365 for Agents demo shows how agents execute in a secure, managed environment.

Are you ready for enterprise-ready agentic computing?

Windows 365 for Agents brings identity, device management, and observability together into a unified, secure platform built for AI agents. In summary, this includes:

  • Distinct identity to establish the Zero Trust foundation
  • Agent-only environments to reduce risk of misuse by design
  • Intune management that enforces a consistent security posture
  • Identity-aware, real-time network protection with Global Secure Access
  • Governance and visibility with Agent 365

As your organization scales AI adoption, this model provides governance, compliance, and security capabilities designed to help manage agent workloads throughout their lifecycle.

Ready to put agents to work securely? Learn more about Windows 365 for Agents security on our support page and start running enterprise-ready agentic workloads today.

 


Footnote: 1. Access to and use of Microsoft Entra, Microsoft Intune, Microsoft Defender, Microsoft Purview, and Microsoft Agent 365 capabilities are subject to applicable licensing requirements and may require separate purchases.

Continue the conversation. Find best practices. Bookmark the Windows Tech Community, then follow us on  LinkedIn or @MSWindowsITPro for updates. Looking for support? Visit Windows on Microsoft Q&A.

Read the whole story
alvinashcraft
7 hours ago
reply
Pennsylvania, USA
Share this story
Delete
Next Page of Stories