<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>rss.livelink.threads-in-node</title>
    <link>https://techcommunity.microsoft.com/t5/user-groups/ct-p/usergroups</link>
    <description>rss.livelink.threads-in-node</description>
    <pubDate>Sun, 26 Jul 2026 10:51:49 GMT</pubDate>
    <dc:creator>usergroups</dc:creator>
    <dc:date>2026-07-26T10:51:49Z</dc:date>
    <item>
      <title>Building an Event-Driven AI HelpDesk on Azure (with Zero API Keys)</title>
      <link>https://techcommunity.microsoft.com/t5/events/building-an-event-driven-ai-helpdesk-on-azure-with-zero-api-keys/ec-p/4540734#M17</link>
      <description>&lt;P&gt;Building AI agents is one thing, but deploying them securely at enterprise scale is another challenge. If you’re still relying on hardcoded API keys to connect your AI services, it’s time to move on. Join a live, in-depth demo of HelpDesk Copilot—an open-source, event-driven AI service desk built entirely on Azure with zero API keys.&lt;/P&gt;&lt;P&gt;This session will cover the foundry-ticketing architecture, showing how to orchestrate autonomous AI agents using cloud-native patterns, combining Microsoft Foundry Agents’ conversational intelligence with Dapr’s event-routing, all running on Azure Container Apps.&lt;/P&gt;&lt;P&gt;You’ll also learn about the “Zero API Key” security model using Managed Identities and Azure RBAC, and pick up best practices for serverless, scale-to-zero cloud deployments. Perfect for Cloud Architects, AI/DevOps Engineers, and Backend Developers aiming to build secure, scalable, event-driven AI apps on the Microsoft stack.&lt;/P&gt;</description>
      <pubDate>Sat, 25 Jul 2026 18:35:30 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/events/building-an-event-driven-ai-helpdesk-on-azure-with-zero-api-keys/ec-p/4540734#M17</guid>
      <dc:creator>KonstantinosPassadis</dc:creator>
      <dc:date>2026-07-25T18:35:30Z</dc:date>
    </item>
    <item>
      <title>The Next Generation of Agents with Azure and Microsoft Foundry</title>
      <link>https://techcommunity.microsoft.com/t5/blog/the-next-generation-of-agents-with-azure-and-microsoft-foundry/ba-p/4540663</link>
      <description>&lt;P&gt;Every company has a help desk, and every help desk answers the same twenty questions over and over:&amp;nbsp;&lt;EM&gt;my VPN keeps dropping, I lost my MFA device, I need access to the Finance share&lt;/EM&gt;. Sound familiar? That is exactly what makes it the perfect proving ground for an AI agent — not another chat demo that just talks, but a system that answers from real documentation, knows when it is&amp;nbsp;&lt;STRONG&gt;not allowed&lt;/STRONG&gt;&amp;nbsp;to answer, and hands off to humans through a real channel.&lt;/P&gt;&lt;P&gt;So that is what we are building today:&amp;nbsp;&lt;STRONG&gt;HelpDesk Copilot&lt;/STRONG&gt;, a Contoso IT service desk where a Microsoft Foundry agent triages employee questions, answers them grounded on an IT knowledge base with citations, and — when policy demands a human — creates a ticket that flows asynchronously through Dapr and Azure Service Bus into Table Storage and an Adaptive Card in a Microsoft Teams channel.&lt;/P&gt;&lt;P&gt;The whole thing runs on&amp;nbsp;&lt;STRONG&gt;Azure Container Apps&lt;/STRONG&gt;, is provisioned entirely with&amp;nbsp;&lt;STRONG&gt;Terraform&lt;/STRONG&gt;, and — my favorite part — contains&amp;nbsp;&lt;STRONG&gt;zero API keys&lt;/STRONG&gt;. Every service-to-service call, from pulling container images to invoking the Foundry agent, uses Microsoft Entra ID and managed identities. The Foundry account has local key authentication disabled outright.&lt;/P&gt;&lt;P&gt;Here is what we will cover:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;The architecture: three ACA apps, one Foundry Prompt Agent, and an event-driven ticket pipeline&lt;/LI&gt;&lt;LI&gt;Why I chose one agent instead of a multi-agent orchestra — and why that was the honest choice&lt;/LI&gt;&lt;LI&gt;Grounded, streaming answers with Foundry File Search and citations&lt;/LI&gt;&lt;LI&gt;The escalation path: Dapr pub/sub, a Service Bus topic, deterministic ticket IDs, and idempotency&lt;/LI&gt;&lt;LI&gt;The identity model: five managed identities, zero connection strings&lt;/LI&gt;&lt;LI&gt;Terraform notes: the Foundry provider landscape is not what you expect&lt;/LI&gt;&lt;LI&gt;Observability with OpenTelemetry and Foundry's cloud evaluation API&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Grab a coffee — let's build!&lt;/P&gt;&lt;H2&gt;The Architecture&lt;/H2&gt;&lt;img /&gt;&lt;P&gt;Three container apps live inside one ACA environment, and each one has a deliberately different network posture:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;Frontend&lt;/STRONG&gt;&amp;nbsp;— React 18 + Vite served by nginx, with&amp;nbsp;&lt;STRONG&gt;external ingress&lt;/STRONG&gt;. This is the only public URL: the chat UI and a live ticket panel.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;API&lt;/STRONG&gt;&amp;nbsp;— FastAPI with a Dapr sidecar,&amp;nbsp;&lt;STRONG&gt;internal ingress only&lt;/STRONG&gt;. It runs the agent conversation loop, streams Server-Sent Events, executes tools, and publishes ticket events.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Ticket worker&lt;/STRONG&gt;&amp;nbsp;— FastAPI with a Dapr sidecar and&amp;nbsp;&lt;STRONG&gt;no ingress at all&lt;/STRONG&gt;. It exists only to consume Service Bus messages via Dapr, and KEDA wakes it from zero replicas based on subscription backlog.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;The frontend's nginx proxies browser calls to the API over the ACA environment's internal DNS — the API is never exposed to the internet. Around the environment sit Microsoft Foundry (a Prompt Agent plus a File Search vector store), a Service Bus topic, Table Storage as the ticket read model, Key Vault holding exactly one secret, Azure Container Registry, and Application Insights on a Log Analytics workspace.&lt;/P&gt;&lt;H2&gt;One Agent, Not an Orchestra&lt;/H2&gt;&lt;P&gt;My original design called for an orchestrator agent routing to specialist agents. Reality intervened: the Connected Agents pattern I planned to use is deprecated, and the workflow orchestration alternatives are still in preview. I could have demoware'd my way around that — instead, I redesigned around&amp;nbsp;&lt;STRONG&gt;one Foundry Prompt Agent&lt;/STRONG&gt;&amp;nbsp;with three capabilities:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;File Search&lt;/STRONG&gt;&amp;nbsp;over the Contoso IT knowledge base, for grounded answers with citations&lt;/LI&gt;&lt;LI&gt;A local&amp;nbsp;&lt;STRONG&gt;create_ticket&lt;/STRONG&gt;&amp;nbsp;function tool, for escalation&lt;/LI&gt;&lt;LI&gt;A local&amp;nbsp;&lt;STRONG&gt;get_ticket_status&lt;/STRONG&gt;&amp;nbsp;function tool, for lookup&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Its instructions enforce the policy: search first, cite your source, and only create a ticket when no procedure covers the problem — or when the procedure explicitly requires human intervention (Finance-share access, a lost device, all MFA methods gone).&lt;/P&gt;&lt;P&gt;Here is the takeaway I want you to keep:&amp;nbsp;&lt;STRONG&gt;a single well-instructed agent with sharp tools beats a fragile multi-agent mesh for this problem size.&lt;/STRONG&gt;&amp;nbsp;Multi-agent is a topology, not a virtue. When the platform's orchestration story stabilizes, this design has an obvious seam to split along — until then, one agent is simpler to reason about, cheaper to run, and easier to evaluate.&lt;/P&gt;&lt;P&gt;Similar honesty applies to retrieval: with ten markdown documents, Azure AI Search would be architectural cosplay. Foundry's built-in File Search vector store is the right-sized tool. When the corpus grows into thousands of documents needing hybrid or semantic ranking, that is the upgrade path.&lt;/P&gt;&lt;H2&gt;The Knowledge Path: Streaming Grounded Answers&lt;/H2&gt;&lt;img /&gt;&lt;P&gt;An employee asks:&amp;nbsp;&lt;EM&gt;"My VPN keeps dropping every hour."&lt;/EM&gt;&amp;nbsp;The flow:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;The frontend POSTs to&amp;nbsp;/chat&amp;nbsp;with the message and an optional&amp;nbsp;conversation_id&lt;/LI&gt;&lt;LI&gt;The API creates (or continues) a Foundry conversation and requests a&amp;nbsp;&lt;STRONG&gt;streamed&lt;/STRONG&gt;&amp;nbsp;response&lt;/LI&gt;&lt;LI&gt;The agent runs File Search over the IT docs and gets relevant chunks back&lt;/LI&gt;&lt;LI&gt;Text deltas and file citation annotations stream back through the API as Server-Sent Events&lt;/LI&gt;&lt;LI&gt;The employee watches the answer type itself out, with the source document cited beneath it&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Citations are not decoration. In an IT support context, "the answer came from the official VPN procedure" is the difference between a trustworthy assistant and a liability. The frontend de-duplicates cited filenames per answer and shows them inline.&lt;/P&gt;&lt;P&gt;The heart of the API is the tool-call loop. When the agent requests a local function, the API executes it and feeds the result back into the&amp;nbsp;&lt;STRONG&gt;same&lt;/STRONG&gt; Foundry conversation, so the agent composes the final employee-facing message. The agent stays the author of the conversation; the API stays the executor of side effects. Here is the loop, from&amp;nbsp;agent_service.py:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;while True:
 stream = openai.responses.create(
 input=pending_input,
 conversation=conversation_id,
 stream=True,
 extra_body={"agent_reference": agent_reference},
 )

 function_outputs = []

 for chunk in stream:
 if chunk.type == "response.output_text.delta":
 yield {"event": "delta", "data": {"text": chunk.delta}}

 elif chunk.type == "response.output_item.done":
 item = chunk.item

 if item.type == "function_call":
 yield {"event": "tool_call", "data": {"name": item.name}}
 output = self._execute_tool(item.name, item.arguments, conversation_id)
 function_outputs.append({
 "type": "function_call_output",
 "call_id": item.call_id,
 "output": json.dumps(output),
 })

 if function_outputs:
 pending_input = function_outputs
 continue # submit tool outputs and let the agent finish its answer

 break&lt;/LI-CODE&gt;&lt;H3&gt;The Escalation Path: Events, Not Awaits&lt;/H3&gt;&lt;img /&gt;&lt;P&gt;Now the interesting request:&amp;nbsp;&lt;EM&gt;"I need Finance-share access for an audit."&lt;/EM&gt;&amp;nbsp;The knowledge base says restricted Finance access&amp;nbsp;&lt;STRONG&gt;always&lt;/STRONG&gt;&amp;nbsp;requires a ticket. The agent emits&amp;nbsp;create_ticket, and this is where the architecture earns its keep:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;The API validates the tool input and computes a&amp;nbsp;&lt;STRONG&gt;deterministic ticket ID&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;It publishes a&amp;nbsp;ticket.created&amp;nbsp;event via its Dapr sidecar to the Service Bus topic&amp;nbsp;ticket-events&amp;nbsp;— and immediately streams the confirmation with the ticket ID back to the employee&lt;/LI&gt;&lt;LI&gt;Dapr delivers the event to the worker through the&amp;nbsp;ticket-worker&amp;nbsp;subscription&lt;/LI&gt;&lt;LI&gt;The worker upserts the ticket into Table Storage, reads the optional Teams webhook URL from Key Vault, and posts the payload to a Power Automate HTTP flow&lt;/LI&gt;&lt;LI&gt;The IT team gets an&amp;nbsp;&lt;STRONG&gt;Adaptive Card in their Teams channel&lt;/STRONG&gt;. A human is now in the loop — a real one.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Chat acknowledgement never waits for persistence or Teams delivery. Three deliberate consequences follow.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Idempotency end-to-end.&lt;/STRONG&gt; The ticket ID is derived, not generated:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;def compute_ticket_id(conversation_id: str, subject: str) -&amp;gt; str:
 """Deterministic ticket ID from (conversation, subject) so a repeated
 create_ticket tool call for the same issue in the same conversation
 collapses to the same ID instead of creating a duplicate.
 """
 key = f"{conversation_id}:{subject.strip().lower()}"
 return hashlib.sha256(key.encode("utf-8")).hexdigest()[:16]&lt;/LI-CODE&gt;&lt;P&gt;If the model retries the tool call, or Service Bus redelivers the event (the subscription allows up to 10 deliveries), the worker&amp;nbsp;&lt;EM&gt;upserts the same row&lt;/EM&gt;&amp;nbsp;instead of minting duplicate tickets. Idempotency is designed in at the ID level, not bolted on with dedup logic afterwards.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Eventual consistency, explained honestly.&lt;/STRONG&gt;&amp;nbsp;The ticket row may not exist for a few seconds while KEDA wakes the worker. Both the agent's status tool and the ticket endpoints treat "not visible yet" as a normal state and say so, and the UI polls every five seconds. Distributed systems do not hide their nature here — they narrate it.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;A topic, not a queue.&lt;/STRONG&gt;&amp;nbsp;Today there is one subscription, so operationally it behaves like a work queue. But "a ticket was created" is an&amp;nbsp;&lt;EM&gt;event&lt;/EM&gt;, and tomorrow an ITSM connector, an audit log, or an analytics pipeline can each get their own subscription without the API changing a single line. Publishers describe facts; subscribers decide what facts mean.&lt;/P&gt;&lt;P&gt;This is the payload that travels unchanged from tool call, through Dapr and Service Bus, into the worker, Table Storage, and the Teams flow:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;{
 "type": "ticket.created",
 "ticket_id": "9a549ad5d5f723d4",
 "conversation_id": "conversation-id",
 "subject": "Request for access to finance shared drive",
 "description": "I need access to the finance shared drive for an audit.",
 "category": "shared-drive-access",
 "urgency": "high",
 "requester_email": "email address removed for privacy reasons",
 "status": "New",
 "created_at": "2026-07-17T16:30:28.396538+00:00",
 "updated_at": "2026-07-17T16:30:28.396538+00:00"
}&lt;/LI-CODE&gt;&lt;P&gt;And the failure mode is designed too: if the Teams webhook is unset or down, the worker logs a warning and keeps the persisted ticket. Persistence happens first and returns success or retry to Dapr based only on the table write — so a Teams outage cannot cause repeated ticket writes.&lt;/P&gt;&lt;H2&gt;Zero Keys: The Identity Model&lt;/H2&gt;&lt;P&gt;This is the part I am proudest of. Every hop authenticates with Entra ID via&amp;nbsp;DefaultAzureCredential&amp;nbsp;— in ACA,&amp;nbsp;AZURE_CLIENT_ID&amp;nbsp;selects each app's user-assigned managed identity; locally, the same code rides on&amp;nbsp;az login.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;API identity&lt;/STRONG&gt;&amp;nbsp;— AcrPull, Foundry agent access, Storage Table Data&amp;nbsp;&lt;STRONG&gt;Reader&lt;/STRONG&gt;, Key Vault Secrets User, Service Bus Sender. It invokes the agent, reads tickets, publishes events.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Worker identity&lt;/STRONG&gt;&amp;nbsp;— AcrPull, Storage Table Data&amp;nbsp;&lt;STRONG&gt;Contributor&lt;/STRONG&gt;, Key Vault Secrets User, Service Bus Receiver. The&amp;nbsp;&lt;STRONG&gt;sole writer&lt;/STRONG&gt;&amp;nbsp;of tickets.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Frontend identity&lt;/STRONG&gt;&amp;nbsp;— AcrPull. It pulls its image, nothing more.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Shared Dapr identity&lt;/STRONG&gt;&amp;nbsp;— Service Bus Data Owner, scoped to authenticating the Dapr component and the KEDA scaler.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Notice the reader/writer split: the API physically cannot modify a ticket, and the worker is the only writer. Least privilege is not a slide bullet here; it is enforced by RBAC per identity. The single unavoidable secret — the Power Automate webhook URL, which is bearer-style by nature — lives in Key Vault, and nowhere else.&lt;/P&gt;&lt;H2&gt;Terraform Notes: The Provider Landscape Is Not What You Expect&lt;/H2&gt;&lt;P&gt;Terraform is the source of truth for all Azure resources, split into four modules: platform, foundry, observability, and aca. Two lessons here were worth the price of admission.&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;STRONG&gt;The obvious-looking resources are the wrong ones.&lt;/STRONG&gt;When I started, I assumed I would needazapi&amp;nbsp;for the Foundry pieces. The real surprise was different: azurerm 4.x&amp;nbsp;&lt;EM&gt;does&lt;/EM&gt;&amp;nbsp;ship&amp;nbsp;azurerm_ai_foundry&amp;nbsp;and&amp;nbsp;azurerm_ai_foundry_project&amp;nbsp;— but those provision the&amp;nbsp;&lt;STRONG&gt;classic, hub-based&lt;/STRONG&gt; Foundry model, not the GA project-based Foundry Agent Service. The current model is provisioned directly on a Cognitive Services account, fully covered by azurerm, no azapi required:&lt;/LI&gt;&lt;/OL&gt;&lt;LI-CODE lang="hcl"&gt;resource "azurerm_cognitive_account" "this" {
 name = "${var.prefix}-${var.environment}-foundry-${var.random_suffix}"
 resource_group_name = var.resource_group_name
 location = var.location
 kind = "AIServices"
 sku_name = "S0"

 # Required for the account to work as a Foundry resource
 # (agents, projects) rather than plain Cognitive Services.
 custom_subdomain_name = "${var.prefix}-${var.environment}-foundry-${var.random_suffix}"
 project_management_enabled = true

 # Enforces "no API keys anywhere" at the account level: only
 # Entra ID auth is accepted, key-based auth is rejected outright.
 local_auth_enabled = false

 identity {
 type = "SystemAssigned"
 }
}&lt;/LI-CODE&gt;&lt;P&gt;&lt;EM&gt;There was one genuine gotcha, though: the built-in&amp;nbsp;&lt;STRONG&gt;Foundry Agent Consumer&lt;/STRONG&gt;&amp;nbsp;role grants enough to call the Responses API against an existing thread, but&amp;nbsp;conversations.create()&amp;nbsp;— which the API calls on every new chat — needs the&amp;nbsp;agents/write&amp;nbsp;data action too. I confirmed that live, with a 403 to show for it. The broader&amp;nbsp;&lt;STRONG&gt;Foundry User&lt;/STRONG&gt; role would work, but it also grants key-listing and the whole Cognitive Services surface. The fix is a small custom role definition granting exactly the three data actions the chat runtime exercises: interact, agents read, agents write. Least privilege, again.&lt;/EM&gt;&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;2&lt;STRONG&gt;. Terraform provisions infrastructure — it does not configure agents.&lt;/STRONG&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The vector store, document upload, and agent version are deliberately &lt;EM&gt;not&lt;/EM&gt; Terraform resources. A&amp;nbsp;seed_knowledge.py&amp;nbsp;bootstrap runs after&amp;nbsp;terraform apply, authenticated as a principal Terraform granted the Foundry Project Manager role. Agent instructions and knowledge content change on an application cadence, not an infrastructure cadence — mixing the two lifecycles is how you end up re-uploading your knowledge base because you resized a container app. Dapr's entity management is disabled for the same reason: Terraform explicitly owns the topic and subscription.&lt;/P&gt;&lt;H2&gt;Observability and Evaluation&lt;/H2&gt;&lt;P&gt;The API initializes Azure Monitor OpenTelemetry, and every Foundry invocation gets a custom&amp;nbsp;agent.invoke&amp;nbsp;span carrying the agent name, conversation ID, selected tools, and input/output token counts when the response exposes them. Platform logs and metrics from all three apps flow to the same Log Analytics workspace. Ask "what did that conversation cost and which tool did it pick?" and App Insights answers.&lt;/P&gt;&lt;P&gt;There is also an evaluation script that pushes ten fixed questions through&amp;nbsp;&lt;STRONG&gt;Foundry's cloud evaluation API&lt;/STRONG&gt;, scoring intent resolution, coherence, and task adherence. File-search questions evaluate end-to-end; locally executed function tools need a response-capture approach — a limitation worth knowing before you promise your boss automated agent QA.&lt;/P&gt;&lt;P&gt;If this section feels short, good — agent observability and governance in production deserves its own post, and it is getting one. Consider this the trailer.&lt;/P&gt;&lt;H2&gt;What This Deliberately Is Not&lt;/H2&gt;&lt;P&gt;Honesty section. HelpDesk Copilot is production-&lt;EM&gt;shaped&lt;/EM&gt;, not production-&lt;EM&gt;finished&lt;/EM&gt;:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;No browser authentication yet.&lt;/STRONG&gt;&amp;nbsp;Conversation IDs partition the ticket panel but are not an authorization boundary. A real rollout adds Entra ID sign-in and server-side authorization before exposing ticket data.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Tickets stay New.&lt;/STRONG&gt;&amp;nbsp;The human handoff is the real Teams notification, not a simulated ITSM lifecycle. Wiring status updates back from an ITSM tool is exactly what the topic's future subscriptions are for.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Global ticket lookup scans partitions.&lt;/STRONG&gt;&amp;nbsp;Fine at demo volume; a high-volume system adds an index.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;I would rather ship a clear boundary than a hidden one.&lt;/P&gt;&lt;H2&gt;Try It&lt;/H2&gt;&lt;P&gt;The full source — Terraform modules, all three services, the knowledge base, seed and evaluation scripts — is on GitHub:&amp;nbsp;&lt;A href="https://github.com/passadis/foundry-ticketing" target="_blank"&gt;passadis/foundry-ticketing&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Quickstart: terraform apply, run seed_knowledge.py, build and push the three images, and ask the public URL why your VPN keeps dropping. With scale-to-zero on all three apps and a small model deployment, idle cost is close to nothing — the architecture only spends money when someone needs help.&lt;/P&gt;&lt;H2&gt;Conclusion&lt;/H2&gt;&lt;P&gt;The AI part of this solution is maybe twenty percent of the code. The rest is the unglamorous engineering that makes an agent&amp;nbsp;&lt;EM&gt;deployable&lt;/EM&gt;: identity, ingress boundaries, idempotent events, honest eventual consistency, IaC lifecycle boundaries, and telemetry. That ratio is the real lesson — and it is exactly why Azure Container Apps plus Microsoft Foundry is such a productive pairing: the platform absorbs the undifferentiated heavy lifting so the interesting decisions remain yours.&lt;/P&gt;&lt;P&gt;Next up in this series: taking the&amp;nbsp;agent.invoke&amp;nbsp;spans further — tracing, token economics, drift, and governance for agents in production with Foundry's control plane and Azure Monitor.&lt;/P&gt;&lt;P&gt;Until then — happy building! 🚀&lt;/P&gt;</description>
      <pubDate>Sat, 25 Jul 2026 10:07:23 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/blog/the-next-generation-of-agents-with-azure-and-microsoft-foundry/ba-p/4540663</guid>
      <dc:creator>KonstantinosPassadis</dc:creator>
      <dc:date>2026-07-25T10:07:23Z</dc:date>
    </item>
    <item>
      <title>Governance Is the New Bottleneck: What Agent 365 Means for Admins ?</title>
      <link>https://techcommunity.microsoft.com/t5/blog/governance-is-the-new-bottleneck-what-agent-365-means-for-admins/ba-p/4539884</link>
      <description>&lt;P&gt;Hi all , following up on my last post about token limits, I wanted to write about something that's been on my mind a lot lately: the sheer number of agents quietly showing up across our tenant. Not just the ones we built deliberately in Copilot Studio, but ones people spun up in Power Platform, ones connected through Teams, and a few I genuinely couldn't trace back to an owner when I went looking. That's the moment this topic stopped being theoretical for me.&lt;/P&gt;&lt;P&gt;For the last couple of years, the Microsoft AI conversation was mostly about capability -what can Copilot do, which model is better, how do I write a good prompt. That conversation hasn't gone away, but a second one has caught up to it fast: who's actually watching all of this. Microsoft's own 2026 Work Trend Index makes the shift explicit &amp;nbsp;this isn't about saving a few minutes in Outlook anymore, it's about organizations redesigning how work gets divided between people and agents. And the moment agents start acting semi-independently across your tenant, "how many do we have, and what are they allowed to touch" becomes a real operational question, not a hypothetical one.&lt;/P&gt;&lt;P&gt;That's exactly the gap Microsoft Agent 365 is built to close. It went generally available on May 1, 2026, alongside Microsoft 365 E7, and I think it's worth understanding properly especially if you're the one who ends up fielding the "wait, there's an agent doing what?" conversation.&lt;/P&gt;&lt;P&gt;&lt;SPAN class="lia-text-color-15"&gt;&lt;STRONG&gt;What Agent 365 Actually Is (and Isn't)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;The first thing worth clearing up: Agent 365 doesn't build agents. That's still Copilot Studio's job, or Foundry, or whatever platform your team is using. Agent 365 is the layer that sits on top of all of that it's a control plane, not a construction tool. Think of it less like "another AI product" and more like the admin and security backbone that was honestly missing from the picture until now.&lt;/P&gt;&lt;P&gt;Microsoft frames it around three pillars: observe, govern, and secure. In practice, that means every agent in your tenant whether it was built in Copilot Studio, imported from AWS or Google Cloud, or even running locally on someone's Windows machine gets registered, gets its own identity through Microsoft Entra, and becomes something you can actually see and act on instead of just hoping it's behaving.&lt;/P&gt;&lt;P&gt;That identity piece is the part I think gets underrated. Each agent gets its own Entra Agent ID, the same way a human user would. That's a meaningful shift it means conditional access policies, auditing, and compliance tooling that already exist for people can now extend to agents instead of treating them as some invisible background process.&lt;/P&gt;&lt;P&gt;&lt;SPAN class="lia-text-color-15"&gt;&lt;STRONG&gt;Why This Matters Right Now&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Here's the honest version of what's been happening across a lot of organizations, including bits of what I've seen firsthand: agent creation has gotten easy. Almost too easy. Between Copilot Studio, Power Platform, and now agentic mode built directly into Word, Excel, and PowerPoint, it doesn't take much for someone in a business unit to spin up something that's technically an AI agent with access to real data without IT or security ever being looped in.&lt;/P&gt;&lt;P&gt;Microsoft has been fairly direct about this risk themselves, which I appreciated seeing in writing rather than just implied: the speed of agent development shows real value, but without guardrails, that pace turns into blind spots, lower ROI, and genuine security exposure. That's not vendor fear-mongering, that's just what happens when adoption outpaces oversight in any technology, and agents are no exception.&lt;/P&gt;&lt;P&gt;What makes this particular moment different from past "shadow IT" waves is that agents don't just store or move data they can act on it. An agent with the wrong scope isn't just a compliance footnote, it's something that could send an email, modify a file, or trigger a workflow on its own. That's a different risk category than an unsanctioned spreadsheet sitting in someone's OneDrive.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN class="lia-text-color-15"&gt;What You Actually Get With Agent 365&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;A few capabilities stood out to me as genuinely useful rather than just checkbox governance:&lt;/P&gt;&lt;P&gt;The overview dashboard gives you a real-time view of your entire agent fleet total registered agents, active users, connected platforms, runtime hours, and risk signals, all in one place. Before this, getting even a rough headcount of "how many agents exist in our tenant" was a manual, frustrating exercise.&lt;/P&gt;&lt;P&gt;Registry sync extends that visibility beyond Microsoft's own tools. It can pull in agents built on AWS Bedrock and Google Cloud, so you're not stuck with three different governance stories depending on where an agent happens to live. For organizations that are realistically never going to be 100% single-vendor, that matters.&lt;/P&gt;&lt;P&gt;Lifecycle actions install, publish, block, unblock, delete, reassign ownership are now available directly from the registry. That's a big deal operationally. Before, tracking down who owned a rogue or abandoned agent could turn into an actual investigation. Now it's a few clicks.&lt;/P&gt;&lt;P&gt;Local agent controls through Defender and Intune are rolling in too, extending management down to agents running on individual Windows endpoints, not just cloud-hosted ones. Given how much agent activity is starting to happen at the device level, this closes a gap that would've otherwise been a blind spot.&lt;/P&gt;&lt;P&gt;Conditional access for agents, through Entra, means you can apply the same kind of dynamic, granular access policies to agents that you'd apply to a human user which is really the whole philosophical shift Agent 365 represents: agents aren't a separate, ungoverned category anymore, they're first-class identities in your tenant.&lt;/P&gt;&lt;P&gt;&lt;SPAN class="lia-text-color-15"&gt;&lt;STRONG&gt;What This Means for Admins, Practically&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;If you're managing a tenant with any real Copilot or agent activity, here's where I'd actually start:&lt;/P&gt;&lt;P&gt;Don't wait for "full autonomy" to engage. It's tempting to think governance can wait until agents are doing something more dramatic than they are today. Microsoft's own guidance pushes against that &amp;nbsp;the advice is to establish visibility and guardrails early, while adoption is still accelerating, not after.&lt;/P&gt;&lt;P&gt;Get a real inventory first. Before writing new policies, it's worth just knowing what already exists. I'd genuinely bet most tenants have more agents running than the admin team could name off the top of their head. The overview dashboard is the fastest way to close that gap.&lt;/P&gt;&lt;P&gt;Loop in more than just IT. Agent 365 licensing and controls touch the M365 admin center, Entra, Defender, Purview, and Intune which means this isn't a single-team rollout. Security, compliance, and helpdesk all need to understand what's changing, especially the distinction between Frontier (preview, no production SLA) and GA (production-ready, supported).&lt;/P&gt;&lt;P&gt;Understand the licensing model before you scope a rollout. Agent 365 is licensed per human user — the person who manages, sponsors, or is served by an agent rather than per agent. It's available standalone at $15 per user per month, or bundled into Microsoft 365 E7. Worth mapping that against your actual agent-using population rather than assuming it's a flat cost per bot.&lt;/P&gt;&lt;P&gt;Treat this as incremental, not a one-time setup. Microsoft has said plainly that Agent 365's capabilities will keep evolving as adoption patterns and governance models mature. This isn't a project you finish and close out it's closer to how you'd think about identity and access management generally: ongoing, not a one-time rollout.&lt;/P&gt;&lt;P&gt;&lt;SPAN class="lia-text-color-15"&gt;&lt;STRONG&gt;The Bigger Shift Underneath All This&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;What I find genuinely interesting about Agent 365 is what it signals about where Microsoft thinks this is all heading. They're not just selling a better Copilot anymore &amp;nbsp;they're positioning Microsoft 365 as the place where AI-driven work gets governed, regardless of which vendor's model or platform an agent actually runs on. Whether that's the right long-term answer for every organization is a fair thing to debate. But the underlying problem it's solving &amp;nbsp;that agents were multiplying faster than anyone's ability to see or control them &amp;nbsp;is real, and I don't think it's specific to Microsoft shops.&lt;/P&gt;&lt;P&gt;If your organization is building agents in Copilot Studio, experimenting with Foundry, or even just watching Copilot's agentic mode quietly take on more autonomous work in Word and Excel, this is worth getting ahead of. The teams that treat agent governance as a foundational layer now are going to have a much easier time scaling adoption later than the ones who bolt it on after something goes wrong.&lt;/P&gt;&lt;P&gt;Curious whether others are already rolling out Agent 365, or still in the "let's figure out how many agents we actually have" phase I suspect a lot of us are somewhere in between. Would love to hear how your organization is approaching this.&lt;/P&gt;&lt;P&gt;Cheers, and happy reading.&lt;/P&gt;&lt;P&gt;Surya Vennapusa-MCT&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jul 2026 01:48:45 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/blog/governance-is-the-new-bottleneck-what-agent-365-means-for-admins/ba-p/4539884</guid>
      <dc:creator>Surya_Narayana</dc:creator>
      <dc:date>2026-07-23T01:48:45Z</dc:date>
    </item>
    <item>
      <title>Data Days 2026 – Preparing for the PL-300 Exam</title>
      <link>https://techcommunity.microsoft.com/t5/events/data-days-2026-preparing-for-the-pl-300-exam/ec-p/4539803#M2</link>
      <description>&lt;P&gt;We are excited to be&amp;nbsp;&lt;STRONG&gt;hosting the Data Days 2026 event&lt;/STRONG&gt; and would love to welcome everyone from the data and cloud community!&lt;/P&gt;
&lt;P&gt;If you're planning to earn the &lt;STRONG&gt;Microsoft&amp;nbsp;&lt;/STRONG&gt;certification or want to strengthen your Microsoft Data &amp;amp; Analytics skills, this session is for you.&lt;/P&gt;
&lt;P&gt;📅 &lt;STRONG&gt;Data Days 2026 – Preparing for the PL-300 Exam&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Join us to explore:&lt;BR /&gt;✅ The Microsoft PL-300 exam objectives and skills measured&lt;BR /&gt;✅ Effective preparation strategies and exam tips&lt;BR /&gt;✅ How PL-300 aligns with Microsoft Fabric, Power BI, and the broader Microsoft data ecosystem&lt;BR /&gt;✅ How this certification can accelerate your career in Data Analytics and Business Intelligence&lt;/P&gt;
&lt;P&gt;Whether you're just starting your certification journey or looking to sharpen your skills, this is a great opportunity to learn from experts, engage with the community, and expand your professional network.&lt;/P&gt;
&lt;P&gt;📍 Register here: &lt;A class="lia-external-url" href="https://teams.microsoft.com/l/meetup-join/19%3ameeting_YmQwZjM0Y2YtOTViMS00YWFiLWI0YjYtMTZmNThkNWJkOWIx%40thread.v2/0?context=%7b%22Tid%22%3a%22b4c9f32e-da17-4ded-9c95-ce9da38f25d9%22%2c%22Oid%22%3a%221c23bec6-d3c9-4b8c-8959-6dc752c2f1c1%22%7d" target="_blank"&gt;https://teams.microsoft.com/l/meetup-join/19%3ameeting_YmQwZjM0Y2YtOTViMS00YWFiLWI0YjYtMTZmNThkNWJkOWIx%40thread.v2/0?context=%7b%22Tid%22%3a%22b4c9f32e-da17-4ded-9c95-ce9da38f25d9%22%2c%22Oid%22%3a%221c23bec6-d3c9-4b8c-8959-6dc752c2f1c1%22%7d&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We look forward to connecting with you and seeing you at the event. See you there!&lt;/P&gt;
&lt;P&gt;#DataDays2026 #PL300 #MicrosoftFabric #PowerBI #DataAnalytics #BusinessIntelligence #MicrosoftLearn #CloudCommunity #AICommunity #TechCommunity #Learning #CareerGrowth&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jul 2026 17:23:29 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/events/data-days-2026-preparing-for-the-pl-300-exam/ec-p/4539803#M2</guid>
      <dc:creator>GulnazMushtaq</dc:creator>
      <dc:date>2026-07-22T17:23:29Z</dc:date>
    </item>
    <item>
      <title>Microsoft Teams y SharePoint:

Colaboración Segura y Gestión Inteligente de la Información.</title>
      <link>https://techcommunity.microsoft.com/t5/women-in-m365-discussions/microsoft-teams-y-sharepoint-colaboraci%C3%B3n-segura-y-gesti%C3%B3n/m-p/4538599#M5</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Women in M365 Articulo 4 Julio 2026.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;La transformación digital ha cambiado la forma en que las organizaciones trabajan, colaboran y comparten información. Los equipos ya no dependen de una ubicación física para comunicarse; hoy, la productividad requiere herramientas que permitan colaborar en tiempo real sin comprometer la seguridad de los datos.&lt;/P&gt;&lt;P&gt;Dentro del ecosistema de Microsoft 365, &lt;STRONG&gt;Microsoft Teams&lt;/STRONG&gt; y &lt;STRONG&gt;SharePoint&lt;/STRONG&gt; forman una plataforma integrada que facilita la comunicación, la administración documental y la colaboración segura. Juntas, estas herramientas ayudan a organizaciones de todos los tamaños a optimizar sus procesos, proteger su información y mantener el cumplimiento de las políticas de seguridad.&lt;/P&gt;&lt;H2&gt;¿Qué es Microsoft Teams?&lt;/H2&gt;&lt;P&gt;Microsoft Teams es la plataforma de colaboración de Microsoft 365 que integra chat, videollamadas, reuniones, telefonía, aplicaciones y almacenamiento de archivos en un solo lugar.&lt;/P&gt;&lt;P&gt;Entre sus principales beneficios destacan:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Comunicación instantánea mediante chats individuales y grupales.&lt;/LI&gt;&lt;LI&gt;Reuniones virtuales con funciones avanzadas de colaboración.&lt;/LI&gt;&lt;LI&gt;Coautoría de documentos en tiempo real.&lt;/LI&gt;&lt;LI&gt;Integración con aplicaciones de Microsoft 365 y servicios de terceros.&lt;/LI&gt;&lt;LI&gt;Espacios de trabajo organizados por equipos y proyectos.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Teams permite que los colaboradores permanezcan conectados sin importar dónde se encuentren, facilitando la continuidad operativa en modelos presenciales, híbridos y remotos.&lt;/P&gt;&lt;H2&gt;¿Qué es SharePoint?&lt;/H2&gt;&lt;P&gt;SharePoint es la plataforma de gestión documental e intranet de Microsoft 365. Su objetivo es centralizar la información empresarial para que esté disponible de forma segura y organizada.&lt;/P&gt;&lt;P&gt;Con SharePoint es posible:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Crear bibliotecas documentales.&lt;/LI&gt;&lt;LI&gt;Administrar versiones de archivos.&lt;/LI&gt;&lt;LI&gt;Compartir documentos con permisos específicos.&lt;/LI&gt;&lt;LI&gt;Automatizar procesos mediante Power Automate.&lt;/LI&gt;&lt;LI&gt;Publicar sitios internos para comunicación organizacional.&lt;/LI&gt;&lt;LI&gt;Controlar el acceso a la información según los roles de cada usuario.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Cada equipo creado en Microsoft Teams cuenta con un sitio de SharePoint que almacena los documentos compartidos, lo que permite una administración más eficiente y segura de la información.&lt;/P&gt;&lt;H2&gt;La integración entre Teams y SharePoint&lt;/H2&gt;&lt;P&gt;Una de las mayores fortalezas de Microsoft 365 es la integración entre ambas herramientas.&lt;/P&gt;&lt;P&gt;Cuando un usuario comparte un archivo en un canal de Teams, el documento se almacena automáticamente en SharePoint. Esto ofrece beneficios como:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Un único repositorio de información.&lt;/LI&gt;&lt;LI&gt;Control de versiones.&lt;/LI&gt;&lt;LI&gt;Edición simultánea por varios usuarios.&lt;/LI&gt;&lt;LI&gt;Recuperación de documentos.&lt;/LI&gt;&lt;LI&gt;Gestión centralizada de permisos.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Esta integración elimina la duplicación de archivos y reduce el riesgo de trabajar con versiones desactualizadas.&lt;/P&gt;&lt;H2&gt;Seguridad y protección de la información&lt;/H2&gt;&lt;P&gt;La colaboración debe ir acompañada de mecanismos sólidos de seguridad. Microsoft 365 incorpora múltiples capacidades para proteger la información durante todo su ciclo de vida.&lt;/P&gt;&lt;P&gt;Entre ellas se encuentran:&lt;/P&gt;&lt;H3&gt;Gestión de permisos&lt;/H3&gt;&lt;P&gt;Es posible definir quién puede visualizar, editar o compartir documentos, aplicando el principio de menor privilegio para reducir riesgos.&lt;/P&gt;&lt;H3&gt;Etiquetas de confidencialidad&lt;/H3&gt;&lt;P&gt;Con Microsoft Purview se pueden clasificar documentos según su nivel de sensibilidad, aplicando protección automática como cifrado, marcas de agua o restricciones para compartir.&lt;/P&gt;&lt;H3&gt;Prevención de pérdida de datos (DLP)&lt;/H3&gt;&lt;P&gt;Las políticas de Data Loss Prevention ayudan a evitar que información confidencial, como datos financieros, información de clientes o documentos legales, sea compartida de manera inapropiada.&lt;/P&gt;&lt;H3&gt;Auditoría y monitoreo&lt;/H3&gt;&lt;P&gt;Las organizaciones pueden registrar actividades relacionadas con archivos y usuarios, facilitando investigaciones, auditorías y el cumplimiento de requisitos regulatorios.&lt;/P&gt;&lt;H2&gt;Buenas prácticas para una colaboración segura&lt;/H2&gt;&lt;P&gt;Para aprovechar al máximo Microsoft Teams y SharePoint se recomienda:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Definir una estructura clara para equipos y sitios.&lt;/LI&gt;&lt;LI&gt;Asignar propietarios responsables de cada espacio de trabajo.&lt;/LI&gt;&lt;LI&gt;Revisar periódicamente los permisos de acceso.&lt;/LI&gt;&lt;LI&gt;Utilizar etiquetas de confidencialidad según el tipo de información.&lt;/LI&gt;&lt;LI&gt;Evitar compartir documentos mediante enlaces públicos cuando no sea necesario.&lt;/LI&gt;&lt;LI&gt;Implementar políticas de retención y respaldo.&lt;/LI&gt;&lt;LI&gt;Capacitar continuamente a los usuarios en buenas prácticas de seguridad.&lt;/LI&gt;&lt;/UL&gt;&lt;H2&gt;El papel del liderazgo femenino en la colaboración digital&lt;/H2&gt;&lt;P&gt;Las mujeres profesionales en tecnología desempeñan un papel esencial en la adopción de soluciones que fortalecen la productividad, la seguridad y la innovación.&lt;/P&gt;&lt;P&gt;A través de comunidades como &lt;STRONG&gt;Women in M365&lt;/STRONG&gt;, miles de profesionales comparten experiencias, conocimientos y mejores prácticas relacionadas con:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Microsoft 365.&lt;/LI&gt;&lt;LI&gt;Colaboración digital.&lt;/LI&gt;&lt;LI&gt;Ciberseguridad.&lt;/LI&gt;&lt;LI&gt;Gobernanza de datos.&lt;/LI&gt;&lt;LI&gt;Inteligencia Artificial.&lt;/LI&gt;&lt;LI&gt;Transformación Digital.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;La diversidad de perspectivas contribuye a crear organizaciones más resilientes, innovadoras y preparadas para afrontar los desafíos del entorno digital.&lt;/P&gt;&lt;H2&gt;Recomendaciones para pequeñas empresas&lt;/H2&gt;&lt;P&gt;✔ Organizar la información por áreas o proyectos.&lt;/P&gt;&lt;P&gt;✔ Definir políticas claras para compartir documentos.&lt;/P&gt;&lt;P&gt;✔ Utilizar autenticación multifactor para proteger las cuentas.&lt;/P&gt;&lt;P&gt;✔ Clasificar la información según su nivel de sensibilidad.&lt;/P&gt;&lt;P&gt;✔ Supervisar periódicamente los permisos y accesos.&lt;/P&gt;&lt;P&gt;✔ Capacitar a los colaboradores en el uso seguro de Microsoft 365.&lt;/P&gt;&lt;P&gt;✔ Aprovechar las capacidades de seguridad y cumplimiento disponibles en Teams, SharePoint y Microsoft Purview.&lt;/P&gt;&lt;H2&gt;Conclusión&lt;/H2&gt;&lt;P&gt;Microsoft Teams y SharePoint representan mucho más que herramientas de comunicación y almacenamiento. Son una plataforma integral que permite colaborar de forma segura, administrar la información de manera inteligente y fortalecer la productividad en cualquier entorno de trabajo.&lt;/P&gt;&lt;P&gt;Cuando estas soluciones se complementan con una estrategia de gobernanza de datos, políticas de seguridad y capacitación continua, las organizaciones pueden proteger sus activos de información mientras impulsan la innovación y el crecimiento.&lt;/P&gt;&lt;P&gt;La transformación digital es más efectiva cuando combina tecnología, procesos y personas comprometidas con una cultura de colaboración segura.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Próximamente en Women in M365&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Microsoft Copilot para Microsoft 365: Inteligencia Artificial para Potenciar la Productividad y la Innovación.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Descubriremos cómo la inteligencia artificial generativa está transformando la forma de trabajar, automatizando tareas, facilitando la creación de contenido y apoyando la toma de decisiones de manera segura y responsable.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Women in M365&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Impulsando el liderazgo femenino mediante tecnología, innovación y transformación digital.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;B Aurora Rz Valles&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Women in M365 Advocate.&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 19 Jul 2026 02:37:51 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/women-in-m365-discussions/microsoft-teams-y-sharepoint-colaboraci%C3%B3n-segura-y-gesti%C3%B3n/m-p/4538599#M5</guid>
      <dc:creator>BAuroraRzValles</dc:creator>
      <dc:date>2026-07-19T02:37:51Z</dc:date>
    </item>
    <item>
      <title>MB-820 Certification Essentials: Your Complete Guide to Becoming a Business Central Developer</title>
      <link>https://techcommunity.microsoft.com/t5/events/mb-820-certification-essentials-your-complete-guide-to-becoming/ec-p/4537934#M12</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Are you looking to advance your career as a Microsoft Dynamics 365 Business Central Developer? Join this awareness session to get a complete understanding of the &lt;STRONG&gt;MB-820: Microsoft Dynamics 365 Business Central Developer Associate&lt;/STRONG&gt; certification.&lt;/P&gt;&lt;P&gt;This session will guide you through the certification overview, exam structure, skill areas measured, important development concepts to focus on, enrollment process, recommended learning resources, and effective preparation strategies. Whether you are an aspiring AL developer or an existing Business Central professional planning to validate your skills, this session will help you understand the certification journey and prepare with confidence.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Key Takeaways:&lt;/STRONG&gt;&lt;BR /&gt;✅ Understand the MB-820 certification and its importance&lt;BR /&gt;✅ Learn about exam objectives and key topic areas&lt;BR /&gt;✅ Explore the skills required for a Business Central Developer&lt;BR /&gt;✅ Discover tips and resources to kickstart your certification journey&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Register here: &lt;A class="lia-external-url" href="https://events.teams.microsoft.com/event/f17ee130-9061-4a67-8631-9c3ba4bdac96@b4c9f32e-da17-4ded-9c95-ce9da38f25d9" target="_blank" rel="noopener"&gt;https://events.teams.microsoft.com/event/f17ee130-9061-4a67-8631-9c3ba4bdac96@b4c9f32e-da17-4ded-9c95-ce9da38f25d9&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 18 Jul 2026 06:37:58 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/events/mb-820-certification-essentials-your-complete-guide-to-becoming/ec-p/4537934#M12</guid>
      <dc:creator>Dr_Gomathi</dc:creator>
      <dc:date>2026-07-18T06:37:58Z</dc:date>
    </item>
    <item>
      <title>Token Limit Exceeded? What's Actually Going On and What to Do About It ?</title>
      <link>https://techcommunity.microsoft.com/t5/blog/token-limit-exceeded-what-s-actually-going-on-and-what-to-do/ba-p/4536271</link>
      <description>&lt;P&gt;Hi All, Based on some recent experience across the organisation with token limit issues, I wanted to put my thoughts down and actually dig into what's happening under the hood, rather than just chalking it up to "we need a bigger plan."&lt;/P&gt;&lt;P&gt;If you work anywhere near the Microsoft ecosystem these days, you're probably touching more AI tools than you realize. Copilot in Word and Excel, GitHub Copilot while you code, Copilot Studio if you're building agents, maybe Security Copilot or Copilot for Sales depending on your role, and increasingly Azure AI Foundry if your team is building anything custom. I work across a good chunk of this stack day to day, and at some point, almost everyone runs into the same wall: "Token limit exceeded." "You've reached your usage limit." "Upgrade to continue."&lt;/P&gt;&lt;P&gt;The first instinct is usually to assume you did something wrong wrote too much, uploaded too big a file, or just need a fatter subscription. Sometimes that's the actual story. But honestly, often, that error message is standing in for three completely different problems that all happen to look identical from the outside. One is about how much text a model can physically process at once. One is about your license or credits running dry. And one has nothing to do with size at all it's just about how fast you're sending requests.&lt;/P&gt;&lt;P&gt;Once you know which of these three, you're dealing with, the fix becomes obvious. Until then, "upgrade your plan" feels like the only lever you've got even when it isn't.&lt;/P&gt;&lt;P&gt;This post walks through what a token is, why Microsoft's various Copilots each handle this differently, and what habits genuinely cut down on these interruptions instead of just throwing money at the problem.&lt;/P&gt;&lt;P&gt;&lt;SPAN class="lia-text-color-20"&gt;&lt;STRONG&gt;Part 1: So What Is a Token, Really?&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;A token isn't a word, and it isn't a character it's somewhere in between. It's the small chunk of text a model's tokenizer breaks your input into before it can do anything with it.&lt;/P&gt;&lt;P&gt;Take a word like "unbelievable." A tokenizer might split it into three pieces something like "un," "believ," and "able." Short, everyday words usually come out as a single token. But code, technical jargon, acronyms, and non-English text tend to fragment into a lot more tokens than you'd guess just by looking at the word count.&lt;/P&gt;&lt;P&gt;This is why every AI tool has a ceiling on how much it can handle in one go, and that ceiling isn't measured in words or characters it's measured in tokens. Your prompt, any documents or emails it pulls in as context, the back-and-forth history of your conversation, and the response itself all draw from the same pool. Once that pool runs dry, something has to give: the tool truncates, rejects the request outright, or quietly summarizes older context to make room.&lt;/P&gt;&lt;P&gt;The part that trips people up: token count doesn't map cleanly to word count. A short, dense paragraph full of code or acronyms can eat up more tokens than a much longer plain-English message.&lt;/P&gt;&lt;P&gt;&lt;SPAN class="lia-text-color-20"&gt;&lt;STRONG&gt;Part 2: Three Different Limits, One Confusing Error Message&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;This isn't always obvious upfront, even to a lot of admins managing these tools: "token limit exceeded" is really a stand-in phrase for three separate limits, and they don't behave the same way. This isn't unique to Microsoft either every major AI platform bundles these same three things behind similarly vague error messages. Microsoft's stack just makes a good case study because so many of us touch multiple pieces of it in the same week.&lt;/P&gt;&lt;P&gt;The context window is the ceiling on how much text a specific model can process in a single request everything from your prompt to retrieved documents to chat history. This is tied to the model itself, not your subscription. Swap from one model to another inside the same tool, and this ceiling can move without you doing anything differently.&lt;/P&gt;&lt;P&gt;Your license, credits, or feature allowance is a completely separate thing. This is what Microsoft 365 Copilot plans track through AI credits and feature limits, and it's what Copilot Studio measures through Copilot credits at the environment level. A single action summarizing an inbox, generating an agent response, running an analysis deducts from this pool regardless of how small your actual prompt felt. Run out, and you get blocked, even if you're nowhere near any context window limit.&lt;/P&gt;&lt;P&gt;The rate limit is about speed, not size. Copilot Studio, for instance, enforces quotas measured in requests per minute or per hour to keep the system stable under load. Send messages too quickly, which happens easily with automations, flows, or bots, and you can get throttled even with a tiny prompt and plenty of credits left.&lt;/P&gt;&lt;P&gt;The reason this matters: a plan upgrade only ever fixes the second one. If you're actually running into the model's context window or getting rate-limited, paying for a bigger license won't change anything, and that mismatch is exactly where most of the frustration comes from.&lt;/P&gt;&lt;P&gt;&lt;SPAN class="lia-text-color-20"&gt;&lt;STRONG&gt;Part 3: How This Plays Out Across the Microsoft AI Stack&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;The Microsoft ecosystem isn't one AI tool wearing different outfits it's genuinely several different systems, each handling tokens and limits in its own way. Here's a tour of the ones people run into most.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Microsoft 365 Copilot&lt;/STRONG&gt; (the one living inside Word, Excel, Outlook, Teams) doesn't work off a single published token number the way a developer tool would. Instead, it dynamically pulls together your prompt, recent chat history, and relevant snippets retrieved from Microsoft Graph your files, emails, and messages and quietly summarizes or drops older material to stay within bounds. Where this usually breaks isn't the context window at all; it's the AI credit and feature-limit system running out, often without much warning until you're mid-task.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;GitHub Copilot Chat&lt;/STRONG&gt; is more like a traditional developer tool. It has a fixed, published token window tied to whichever model you've selected, and that limit applies consistently whether you're in the browser, VS Code, or the CLI. The failure mode here is usually a long conversation or a big multi-file context quietly creeping past that ceiling.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Copilot Studio,&lt;/STRONG&gt; where a lot of custom agent-building happens, runs on Copilot credits per interaction, plus its own requests-per-minute and requests-per-hour quotas at the environment level. If you're grounding an agent in SharePoint content, there's also a separate file-size ceiling to watch content over a certain size can get silently excluded from generative answers depending on your tenant's licensing.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Azure AI Foundry&lt;/STRONG&gt; (recently renamed to Microsoft Foundry, in case you've seen both names floating around) is where this gets more directly in your control. If your team is building custom applications on top of Azure OpenAI or other models in the Foundry catalog, which now includes everything from GPT to Phi to Claude to Llama, you're working with explicit, published context windows per model, and you're billed per token rather than per credit. It's a different mental model entirely: less "you hit a wall," more "you're paying by the word, so design accordingly."&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Security Copilot,&lt;/STRONG&gt; if your org uses it for threat analysis and incident response, runs on its own capacity model pooled compute units at the tenant level rather than a simple per-user cap. It's easy to assume this behaves like M365 Copilot license limits; it doesn't.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Copilot for Sales&lt;/STRONG&gt;, embedded in Outlook and Teams for CRM-connected work, and Copilot in Power BI, which now goes beyond generating summaries to actually helping build and refine semantic models, both draw from their own feature-specific allowances layered on top of whatever base Microsoft 365 or Power Platform license you're on.&lt;/P&gt;&lt;P&gt;And then there's the multi-model wrinkle that trips up teams the most: because tools like Copilot Studio and GitHub Copilot let you choose between GPT-based models, Claude, and others, the exact same prompt can have a different effective context window and a different token cost purely based on which model handled it that day. This is a big, underrated reason behind the "it worked fine yesterday, why not now" complaint.&lt;/P&gt;&lt;P&gt;&lt;SPAN class="lia-text-color-20"&gt;&lt;STRONG&gt;Part 4: What Actually Helps ?&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Some of this is genuinely outside your control, but a fair amount isn't.&lt;/P&gt;&lt;P&gt;If you're just using these tools day to day, the single biggest habit shift is not letting conversations run forever. Long threads in Copilot Chat or Copilot Studio keep accumulating history, and that history eats into the same budget as whatever you're asking right now. Starting fresh periodically costs you nothing and buys back a lot of headroom.&lt;/P&gt;&lt;P&gt;Large documents are worth splitting up before you feed them in, especially for SharePoint-grounded agents, where oversized files can get quietly excluded rather than cleanly rejected you won't necessarily know it happened unless you're looking for it. And it's worth resisting the urge to default to the heaviest, most capable model for every single task. Lighter models are usually faster, cheaper, and often sit under a more generous limit than the flagship ones, and most everyday tasks genuinely don't need the biggest model available.&lt;/P&gt;&lt;P&gt;Before you go asking IT for a license upgrade, it's worth a quick sanity check on which limit you actually hit. If it's a rate limit, waiting a minute and retrying usually solves it outright. If it's a context window problem, trimming your prompt or starting a new session fixes it. An upgrade only helps if you've genuinely run out of credits or feature allowance, and that's worth confirming before you file the request.&lt;/P&gt;&lt;P&gt;If you're on the building side Copilot Studio agents, Foundry applications, anything with RAG-style grounding a couple of things pay off quickly. Keep an eye on credit or token consumption proactively rather than discovering it's gone when the agent goes down mid-conversation. Be deliberate about what goes into system prompts and orchestration instructions, since those draw from the same budget as the end user's actual message, often invisibly to whoever's chatting with the agent. And spend real time getting chunk size right for knowledge sources too large and you're burning budget on irrelevant context, too small and the agent loses the thread.&lt;/P&gt;&lt;P&gt;&lt;SPAN class="lia-text-color-20"&gt;&lt;STRONG&gt;Part 5: Quick Checklist Before You Escalate&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Is this actually a context window problem -prompt, history, and attachments too big for the model in use?&lt;/LI&gt;&lt;LI&gt;Have you genuinely run out of credits or feature allowance on your plan?&lt;/LI&gt;&lt;LI&gt;Could this be a rate limit -too many requests too fast, especially from a flow or automation?&lt;/LI&gt;&lt;LI&gt;Did the underlying model change since last time, quietly shifting the effective window?&lt;/LI&gt;&lt;LI&gt;For Studio or Foundry work, is this a tenant or environment-level limit rather than something tied to you personally?&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN class="lia-text-color-20"&gt;&lt;STRONG&gt;Closing Thoughts&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Tokenization is one of those things that stays completely invisible right up until it isn't. Across a stack as sprawling as Microsoft's M365 Copilot, GitHub Copilot, Copilot Studio, Foundry, Security Copilot, and everything layered on top&amp;nbsp; "token limit exceeded" almost never means one single thing. It means you've hit one of three very different walls, and each one needs a different response.&lt;/P&gt;&lt;P&gt;If your team builds or maintains any of these tools, this is genuinely worth putting in front of people early. Most of the "why did this break" tickets in this space aren't about tokens at all. They're about nobody knowing which limit actually got hit, or where in this increasingly large ecosystem it happened.&lt;/P&gt;&lt;P&gt;I'm curious how this shows up for others has your team standardized on one model across these tools, or are you juggling several depending on the task? I'd love to hear what patterns you've run into.&lt;/P&gt;&lt;P&gt;Cheers, and happy reading.&lt;/P&gt;&lt;P&gt;- By Surya Vennapusa, MCT&lt;/P&gt;</description>
      <pubDate>Sun, 12 Jul 2026 18:57:22 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/blog/token-limit-exceeded-what-s-actually-going-on-and-what-to-do/ba-p/4536271</guid>
      <dc:creator>Surya_Narayana</dc:creator>
      <dc:date>2026-07-12T18:57:22Z</dc:date>
    </item>
    <item>
      <title>How to prepare for the DP-6OO certification ? Looking for study tips and Resources.</title>
      <link>https://techcommunity.microsoft.com/t5/discussion/how-to-prepare-for-the-dp-6oo-certification-looking-for-study/m-p/4535347#M63</link>
      <description>&lt;P&gt;Title: How to Prepare for the DP-600 Certification? Looking for Study Tips and Resources&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am currently preparing for the DP-600: Microsoft Certified – Fabric Analytics Engineer Associate certification.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would appreciate your advice on:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- The best learning resources and documentation.&lt;/P&gt;&lt;P&gt;- Hands-on labs or practice projects to build real-world skills.&lt;/P&gt;&lt;P&gt;- Recommended practice tests or mock exams.&lt;/P&gt;&lt;P&gt;- Common challenges faced during the exam.&lt;/P&gt;&lt;P&gt;- Tips from those who have already passed the DP-600 certification.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any study plan, preparation strategy, or personal experience would be greatly appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance for your support!&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jul 2026 12:25:57 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/discussion/how-to-prepare-for-the-dp-6oo-certification-looking-for-study/m-p/4535347#M63</guid>
      <dc:creator>BRNayak</dc:creator>
      <dc:date>2026-07-09T12:25:57Z</dc:date>
    </item>
    <item>
      <title>Where is the video recording?</title>
      <link>https://techcommunity.microsoft.com/t5/discussion/where-is-the-video-recording/m-p/4533717#M61</link>
      <description>&lt;P&gt;I don't see the recording&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 04 Jul 2026 19:54:02 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/discussion/where-is-the-video-recording/m-p/4533717#M61</guid>
      <dc:creator>Repocr</dc:creator>
      <dc:date>2026-07-04T19:54:02Z</dc:date>
    </item>
    <item>
      <title>suppots</title>
      <link>https://techcommunity.microsoft.com/t5/discussion/suppots/m-p/4533650#M60</link>
      <description>&lt;P&gt;now i am begginer&amp;nbsp;&lt;/P&gt;&lt;P&gt;how to start&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 04 Jul 2026 08:36:28 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/discussion/suppots/m-p/4533650#M60</guid>
      <dc:creator>godvani</dc:creator>
      <dc:date>2026-07-04T08:36:28Z</dc:date>
    </item>
    <item>
      <title>Strengthen cyber resilience across the Microsoft Cloud (Entra/M365/Azure).</title>
      <link>https://techcommunity.microsoft.com/t5/events/strengthen-cyber-resilience-across-the-microsoft-cloud-entra/ec-p/4532307#M54</link>
      <description>&lt;P&gt;Entra ID and Microsoft 365 form the backbone of many business operations, seamlessly integrating to drive efficiency and innovation. However, this interconnected power also expands the attack surface, increasing the potential risk of data loss and security breaches. Protecting your critical data across these platforms is no longer optional—it’s essential to ensuring business continuity and swift recovery from cyber incidents. In this session, we’ll uncover the key vulnerabilities and provide actionable strategies to strengthen your data security posture against evolving threats.&lt;/P&gt;&lt;P&gt;&amp;nbsp;Speaker: &amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A class="lia-external-url" href="https://www.linkedin.com/vtoves/" target="_blank" rel="noopener"&gt;Vanessa Toves&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jul 2026 19:45:15 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/events/strengthen-cyber-resilience-across-the-microsoft-cloud-entra/ec-p/4532307#M54</guid>
      <dc:creator>lukemurraynz</dc:creator>
      <dc:date>2026-07-06T19:45:15Z</dc:date>
    </item>
    <item>
      <title>Unable to Access Lab environment During My DP-300 Examination</title>
      <link>https://techcommunity.microsoft.com/t5/discussion/unable-to-access-lab-environment-during-my-dp-300-examination/m-p/4531447#M19</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;I want to find out who is responsible for this issue—Microsoft or Pearson VUE (the testing center).&lt;/P&gt;&lt;P&gt;During my DP-300 exam, I couldn't access the lab environment. I kept receiving an authentication error when trying to sign in using the Console Authenticator. I carefully followed the instructions and scanned the QR code displayed on the screen, but it didn't work.&lt;/P&gt;&lt;P&gt;I then tried the second authentication option by entering the code manually, but I still received the same error.&lt;/P&gt;&lt;P&gt;I've submitted a complaint, but both Microsoft and Pearson VUE are shifting the blame to each other. I studied really hard for this exam, and to make matters worse, this is the second time I've experienced the exact same issue.&lt;/P&gt;&lt;P&gt;The first time it happened, Microsoft acknowledged the issue and provided me with an exam voucher. I'm now trying to understand who is actually liable for this recurring problem and what my next steps should be.&lt;/P&gt;&lt;P&gt;Has anyone else experienced something similar or have any advice?&lt;/P&gt;</description>
      <pubDate>Sat, 27 Jun 2026 09:00:47 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/discussion/unable-to-access-lab-environment-during-my-dp-300-examination/m-p/4531447#M19</guid>
      <dc:creator>Chumasande_Mooi</dc:creator>
      <dc:date>2026-06-27T09:00:47Z</dc:date>
    </item>
    <item>
      <title>June 2026 Meeting Recap - Intune, AI‑Powered Power Apps, and Career Pathways in Tech</title>
      <link>https://techcommunity.microsoft.com/t5/ananse-tech-community/june-2026-meeting-recap-intune-ai-powered-power-apps-and-career/m-p/4531403#M2</link>
      <description>&lt;P&gt;🚀Hey Ananse Tech enthusiasts - Here are the Promised Resources from Last Night's Ananse Tech Community Meeting Jun 25,2026 -Intune, AI‑Powered Power Apps, and Career Pathways in Tech! 🌐✨&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;📆 Last Night Event Recap: Missed our last event? No worries! We've got you covered. Dive into the recording, check out the deck, and take a moment to share your thoughts! 🎙📊&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;📹 Recording:&amp;nbsp; &lt;A href="https://youtu.be/86M1l8zIsR0?si=sE5Fv7V83EAWl7cB" target="_blank"&gt;https://youtu.be/86M1l8zIsR0?si=sE5Fv7V83EAWl7cB&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Looking for our past events? Check out our YouTube channel -&amp;gt; &lt;A href="https://www.youtube.com/@AnanseTechCommunity!" target="_blank"&gt;https://www.youtube.com/@AnanseTechCommunity!&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;📑 Deck: AnanseSlides - MayJune2026.pptx&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;⏰ Post Event Form: And for those who attended and hadn't had a chance to fill out the post event survey, please do. &lt;A href="https://lnkd.in/gw2P2yce" target="_blank"&gt;https://lnkd.in/gw2P2yce&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;✨✨Join us next month, Jul 23,2026 at 6 pm, for our next great event AI-Powered Work: Smarter Meetings, Smarter Content, Smarter Business! See the details here:&lt;A href="https://www.linkedin.com/events/7475901638994571264/?viewAsMember=true" target="_blank"&gt;LinkedIn Login, Sign in | LinkedIn&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For all of our upcoming events, please see our events page: &lt;A href="https://www.linkedin.com/company/ananse-tech-community/events/?viewAsMember=true" target="_blank"&gt;S’identifier sur LinkedIn | LinkedIn&lt;/A&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;🗣🎙BTW, if you are interested in speaking during one of our community events, please fill out this form: &lt;A href="https://forms.office.com/r/GQ1m7wQd5q." target="_blank"&gt;Please fill out this form&lt;/A&gt; If you are interested in volunteering or sponsoring, reach out to us at email address removed for privacy reasons.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your insights fuel our community's growth, so don't hesitate to contribute! Let's keep the tech vibes strong! 🚀🌐&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jun 2026 20:55:46 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/ananse-tech-community/june-2026-meeting-recap-intune-ai-powered-power-apps-and-career/m-p/4531403#M2</guid>
      <dc:creator>NikkiaTCarter1</dc:creator>
      <dc:date>2026-06-26T20:55:46Z</dc:date>
    </item>
    <item>
      <title>AI-Powered Work: Smarter Meetings, Smarter Content, Smarter Business</title>
      <link>https://techcommunity.microsoft.com/t5/ananse-tech-community-events/ai-powered-work-smarter-meetings-smarter-content-smarter/ec-p/4530994#M13</link>
      <description>&lt;H1&gt;Join us for our July 2026 meeting: AI-Powered Work: Smarter Meetings, Smarter Content, Smarter Business!&amp;nbsp;&lt;/H1&gt;&lt;P&gt;Doors open 5:30 pm GMT (1:30 pm Eastern US / 10:30 am Pacific US)&lt;/P&gt;&lt;P&gt;We start promptly at 6-8 pm GMT (2-4 PM Eastern US / 11am-1 pm Pacific US)&lt;/P&gt;&lt;H2&gt;Our Tech Speakers and Topics&lt;/H2&gt;&lt;H3&gt;&lt;BR /&gt;Speaker: Onyinye Madubuko, Senior M365 Consultant at Ergo&lt;/H3&gt;&lt;P&gt;Session Title:&amp;nbsp;&lt;BR /&gt;Teaching Copilot to Speak Your Language: The Future of Smarter Meetings&lt;BR /&gt;Session Description:&amp;nbsp;&lt;BR /&gt;The use of Copilot to boost workplace productivity continues to grow. Most Microsoft apps and services now have an AI assistant embedded to support users with more on the way. Among Microsoft’s collaboration tools, Microsoft Teams, the hub for teamwork, is steadily evolving with AI-powered features and agents designed to make chats and meetings more seamless.&lt;/P&gt;&lt;P&gt;These AI capabilities enhance the meeting experience both during and after the session. Participants can focus and engage more attentively while Copilot takes notes automatically. While many appreciate the convenience of AI-generated meeting summaries, a common challenge continues to persists. It has been observed that the AI notes often contain misspellings or awkward phrasing, especially when unique organizational acronyms are involved.&lt;/P&gt;&lt;P&gt;In this session, I’ll cover:&lt;/P&gt;&lt;P&gt;- The process structure of capturing team-specific organizational acronyms&lt;/P&gt;&lt;P&gt;- Requirements and steps for implementing a custom dictionary in Copilot for Teams meeting&lt;/P&gt;&lt;P&gt;- Real-world use cases demonstrating the custom dictionary in action&lt;/P&gt;&lt;P&gt;By the end of this session, organization administrators will be better equipped to help team members and stakeholders to fully benefit from AI-generated notes during and after Microsoft Teams meetings&lt;/P&gt;&lt;H3&gt;Speaker: Marco Rocca, Cloud Solutions Architect at Tecnimont Services&lt;/H3&gt;&lt;P&gt;&lt;BR /&gt;Session Title:&amp;nbsp;&lt;BR /&gt;Discover SharePoint AI Skills&lt;BR /&gt;Session Description:&amp;nbsp;&lt;BR /&gt;With the introduction of AI Skills in SharePoint, organizations are redefining how organizations transform content into actionable knowledge.&amp;nbsp;&lt;BR /&gt;This session explores how SharePoint evolves from a traditional document repository into an AI-powered knowledge platform, enabling teams to "teach" AI how their business works.&lt;BR /&gt;We will examine how AI Skills allow users to capture repeatable, multi-step workflows in natural language and convert them into reusable assets that standardize operations across sites.&amp;nbsp;&lt;BR /&gt;These skills, stored as lightweight Markdown-based definitions, enable consistent execution of business processes such as document review, content generation, metadata extraction, and reporting—without writing code&lt;/P&gt;&lt;H2&gt;&lt;BR /&gt;Our Career Speaker and Topic&lt;/H2&gt;&lt;H3&gt;Speaker: Harry Carter, Co-Founder of the Ananse Tech Community, Co-CEO for Sesa Technology Ltd., Co-CEO for NTC Tech Consultancy, LLC&lt;/H3&gt;&lt;P&gt;&lt;BR /&gt;Session Title:&amp;nbsp;&lt;BR /&gt;Create Professional Documents with Copilot: Smarter Work for Ghanaian Businesses&lt;BR /&gt;Session Description:&lt;BR /&gt;Creating polished, professional documents doesn’t have to take hours. In this session, we’ll explore how to use Microsoft Copilot to quickly draft, refine, and improve business documents for real-world use in Ghana.&lt;/P&gt;&lt;P&gt;You’ll learn how to use AI to create emails, proposals, reports, and presentations with clarity and confidence—while saving time and maintaining quality.&lt;/P&gt;&lt;P&gt;This session is perfect for professionals, entrepreneurs, and anyone looking to work smarter and present their ideas more effectively.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jun 2026 13:46:01 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/ananse-tech-community-events/ai-powered-work-smarter-meetings-smarter-content-smarter/ec-p/4530994#M13</guid>
      <dc:creator>NikkiaTCarter1</dc:creator>
      <dc:date>2026-06-25T13:46:01Z</dc:date>
    </item>
    <item>
      <title>Azure Cloud Commanders is moving!</title>
      <link>https://techcommunity.microsoft.com/t5/discussion/azure-cloud-commanders-is-moving/m-p/4530727#M114</link>
      <description>&lt;P&gt;The Azure Cloud Commanders group is moving!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is moving from the Microsoft Community Hub, into Azure! So we can continue the conversation and sessions over there! I will let you know what this means when I have a clearer picture, but sessions are proceeding as is!&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jun 2026 19:31:33 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/discussion/azure-cloud-commanders-is-moving/m-p/4530727#M114</guid>
      <dc:creator>lukemurraynz</dc:creator>
      <dc:date>2026-06-24T19:31:33Z</dc:date>
    </item>
    <item>
      <title>new to this group booked exam on Aug. 15</title>
      <link>https://techcommunity.microsoft.com/t5/discussion/new-to-this-group-booked-exam-on-aug-15/m-p/4530413#M51</link>
      <description>&lt;P&gt;&lt;STRONG&gt;any suggestions on how to be ready within 7 weeks😃 i have pl 300&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jun 2026 02:24:52 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/discussion/new-to-this-group-booked-exam-on-aug-15/m-p/4530413#M51</guid>
      <dc:creator>Minty</dc:creator>
      <dc:date>2026-06-24T02:24:52Z</dc:date>
    </item>
    <item>
      <title>Women in M365 Artículo 3 Junio 2026.

Microsoft Purview.</title>
      <link>https://techcommunity.microsoft.com/t5/women-in-m365-discussions/women-in-m365-art%C3%ADculo-3-junio-2026-microsoft-purview/m-p/4530392#M3</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Protegiendo la Información y Fortaleciendo el Cumplimiento Digital. Liderazgo Femenino y Protección Digital en la Era de la IA.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Por B. Aurora Rz Valles.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Microsoft Community.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Lead Regional MGCI.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Advisor.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;La transformación digital ha permitido que pequeñas empresas, organizaciones comunitarias y emprendimientos liderados por mujeres accedan a nuevas oportunidades de crecimiento. Sin embargo, el aumento del volumen de datos y el uso de herramientas basadas en inteligencia artificial también han generado nuevos desafíos relacionados con la protección de la información.&lt;/P&gt;&lt;P&gt;Documentos financieros, datos de clientes, expedientes administrativos, contratos y comunicaciones internas representan activos valiosos que requieren mecanismos de seguridad adecuados.&lt;/P&gt;&lt;P&gt;En este contexto, Microsoft Purview se ha convertido en una de las soluciones más importantes dentro del ecosistema Microsoft 365 para ayudar a las organizaciones a proteger, clasificar y gobernar su información.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;¿Qué es Microsoft Purview?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Microsoft Purview es una plataforma integral de gobierno de datos, cumplimiento normativo y protección de información que permite a las organizaciones conocer dónde se encuentran sus datos, quién tiene acceso a ellos y cómo se utilizan.&lt;/P&gt;&lt;P&gt;Su objetivo principal es ayudar a proteger información sensible, reducir riesgos y cumplir con requisitos regulatorios y normativos.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;¿Por Qué Es Importante para los Pequeños Negocios?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Muchas pequeñas empresas almacenan información crítica en correos electrónicos, documentos compartidos, hojas de cálculo y plataformas en la nube.&lt;/P&gt;&lt;P&gt;Sin una estrategia adecuada de protección de datos, pueden enfrentar riesgos como:&lt;/P&gt;&lt;P&gt;Exposición accidental de información confidencial.&lt;/P&gt;&lt;P&gt;Compartición indebida de documentos.&lt;/P&gt;&lt;P&gt;Pérdida de datos sensibles.&lt;/P&gt;&lt;P&gt;Incumplimiento de regulaciones de privacidad.&lt;/P&gt;&lt;P&gt;Riesgos asociados al trabajo remoto e híbrido.&lt;/P&gt;&lt;P&gt;Uso inadecuado de información empresarial.&lt;/P&gt;&lt;P&gt;Microsoft Purview ayuda a reducir estos riesgos mediante herramientas automatizadas de protección y supervisión.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Principales Capacidades de Microsoft Purview&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1. Clasificación Automática de Datos&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Permite identificar información sensible como:&lt;/P&gt;&lt;P&gt;Números de identificación.&lt;/P&gt;&lt;P&gt;Información financiera.&lt;/P&gt;&lt;P&gt;Datos personales.&lt;/P&gt;&lt;P&gt;Registros médicos.&lt;/P&gt;&lt;P&gt;Información confidencial de clientes.&lt;/P&gt;&lt;P&gt;Una vez detectados, los datos pueden etiquetarse automáticamente para aplicar medidas de protección.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2. Etiquetas de Sensibilidad&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Las etiquetas de sensibilidad ayudan a clasificar documentos y correos electrónicos según su nivel de confidencialidad.&lt;/P&gt;&lt;P&gt;Ejemplos:&lt;/P&gt;&lt;P&gt;Público&lt;/P&gt;&lt;P&gt;Uso Interno&lt;/P&gt;&lt;P&gt;Confidencial&lt;/P&gt;&lt;P&gt;Altamente Confidencial&lt;/P&gt;&lt;P&gt;Esto facilita que los usuarios comprendan cómo deben manejar la información.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;3. Prevención de Pérdida de Datos (DLP)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;La funcionalidad de Data Loss Prevention (DLP) ayuda a evitar que información sensible sea compartida de forma accidental.&lt;/P&gt;&lt;P&gt;Por ejemplo:&lt;/P&gt;&lt;P&gt;Detecta números de cuentas bancarias.&lt;/P&gt;&lt;P&gt;Identifica datos personales.&lt;/P&gt;&lt;P&gt;Bloquea envíos no autorizados.&lt;/P&gt;&lt;P&gt;Genera alertas para administradores.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;4. Gobierno y Retención de Información&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Permite definir cuánto tiempo deben conservarse determinados documentos y cuándo pueden eliminarse de manera segura.&lt;/P&gt;&lt;P&gt;Beneficios:&lt;/P&gt;&lt;P&gt;Organización documental.&lt;/P&gt;&lt;P&gt;Cumplimiento normativo.&lt;/P&gt;&lt;P&gt;Reducción de almacenamiento innecesario.&lt;/P&gt;&lt;P&gt;Mejor gestión de registros empresariales.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;5. Cumplimiento y Auditoría&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Microsoft Purview facilita:&lt;/P&gt;&lt;P&gt;Registro de actividades.&lt;/P&gt;&lt;P&gt;Auditorías internas.&lt;/P&gt;&lt;P&gt;Investigaciones de incidentes.&lt;/P&gt;&lt;P&gt;Monitoreo de accesos.&lt;/P&gt;&lt;P&gt;Seguimiento del uso de información sensible.&lt;/P&gt;&lt;P&gt;Cómo Comenzar con Microsoft Purview&lt;/P&gt;&lt;P&gt;Paso 1. Acceder al Portal&lt;/P&gt;&lt;P&gt;Inicia sesión en Microsoft 365.&lt;/P&gt;&lt;P&gt;Accede al Centro de Cumplimiento.&lt;/P&gt;&lt;P&gt;Selecciona Microsoft Purview.&lt;/P&gt;&lt;P&gt;Paso 2. Revisar el Panel de Cumplimiento&lt;/P&gt;&lt;P&gt;Explora las secciones:&lt;/P&gt;&lt;P&gt;Protección de Información.&lt;/P&gt;&lt;P&gt;Prevención de Pérdida de Datos.&lt;/P&gt;&lt;P&gt;Administración de Registros.&lt;/P&gt;&lt;P&gt;Auditoría.&lt;/P&gt;&lt;P&gt;Riesgos Internos.&lt;/P&gt;&lt;P&gt;Paso 3. Crear Etiquetas de Sensibilidad&lt;/P&gt;&lt;P&gt;Define categorías para la información de tu organización:&lt;/P&gt;&lt;P&gt;Público.&lt;/P&gt;&lt;P&gt;Interno.&lt;/P&gt;&lt;P&gt;Confidencial.&lt;/P&gt;&lt;P&gt;Restringido.&lt;/P&gt;&lt;P&gt;Paso 4. Configurar Políticas DLP&lt;/P&gt;&lt;P&gt;Establece reglas para proteger:&lt;/P&gt;&lt;P&gt;Datos financieros.&lt;/P&gt;&lt;P&gt;Información de clientes.&lt;/P&gt;&lt;P&gt;Documentos estratégicos.&lt;/P&gt;&lt;P&gt;Información legal.&lt;/P&gt;&lt;P&gt;Paso 5. Capacitar a los Usuarios&lt;/P&gt;&lt;P&gt;La tecnología es más efectiva cuando las personas comprenden cómo utilizarla correctamente.&lt;/P&gt;&lt;P&gt;El Papel de las Mujeres en la Gobernanza Digital&lt;/P&gt;&lt;P&gt;Las mujeres profesionales en tecnología desempeñan un papel fundamental en la construcción de organizaciones más seguras y resilientes.&lt;/P&gt;&lt;P&gt;A través de comunidades como Women in M365, miles de mujeres comparten conocimientos sobre:&lt;/P&gt;&lt;P&gt;Ciberseguridad.&lt;/P&gt;&lt;P&gt;Cumplimiento normativo.&lt;/P&gt;&lt;P&gt;Gestión de datos.&lt;/P&gt;&lt;P&gt;Inteligencia Artificial Responsable.&lt;/P&gt;&lt;P&gt;Transformación Digital.&lt;/P&gt;&lt;P&gt;La diversidad en los equipos tecnológicos fortalece la innovación y mejora la toma de decisiones relacionadas con la protección de la información.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Recomendaciones para Pequeñas Empresas&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;✔ Clasificar la información empresarial.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;✔ Aplicar controles de acceso.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;✔ Implementar políticas de retención.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;✔ Supervisar el intercambio de datos.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;✔ Capacitar continuamente a los colaboradores.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;✔ Utilizar herramientas de cumplimiento disponibles en Microsoft 365.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;✔ Establecer una cultura organizacional basada en la protección de datos.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Conclusión&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;La protección de la información ya no es una tarea exclusiva de los departamentos de tecnología. En la actualidad, forma parte de la estrategia de crecimiento, confianza y sostenibilidad de cualquier organización.&lt;/P&gt;&lt;P&gt;Microsoft Purview permite a emprendedoras, pequeñas empresas y organizaciones fortalecer la gobernanza de sus datos, proteger información sensible y cumplir con los desafíos de un entorno digital cada vez más complejo.&lt;/P&gt;&lt;P&gt;Cuando combinamos tecnología, educación y liderazgo femenino, construimos ecosistemas digitales más seguros, inclusivos y preparados para el futuro.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Próximamente en Women in M365&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Microsoft Teams y SharePoint: Colaboración Segura y Gestión Inteligente de la Información&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Descubriremos cómo estas herramientas permiten a las organizaciones mejorar la comunicación, proteger documentos y fortalecer la productividad en entornos híbridos y remotos.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Women in M365&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Impulsando el liderazgo femenino mediante tecnología, innovación y transformación digital.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;B. Aurora Rz Valles&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Women in M365 Advocate.&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jun 2026 23:11:38 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/women-in-m365-discussions/women-in-m365-art%C3%ADculo-3-junio-2026-microsoft-purview/m-p/4530392#M3</guid>
      <dc:creator>Lider_RegionalMGCI</dc:creator>
      <dc:date>2026-06-23T23:11:38Z</dc:date>
    </item>
    <item>
      <title>PL-300 study guidance in Data Days 2026</title>
      <link>https://techcommunity.microsoft.com/t5/discussion/pl-300-study-guidance-in-data-days-2026/m-p/4529972#M50</link>
      <description>&lt;P&gt;Hello everyone ,&lt;/P&gt;&lt;P&gt;i am currently enrolled in the Data Days 2026 program and actively following the PL-300 study&amp;nbsp; sessions.&lt;/P&gt;&lt;P&gt;i would like to improve my pawer BI&amp;nbsp; skills and follow the most effective learning path for the certification.&lt;/P&gt;&lt;P&gt;could someone guide me on which sessions or study group i should focus at this stage?&lt;/P&gt;&lt;P&gt;Thank you in Advance for your help.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jun 2026 06:08:40 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/discussion/pl-300-study-guidance-in-data-days-2026/m-p/4529972#M50</guid>
      <dc:creator>Feudson</dc:creator>
      <dc:date>2026-06-23T06:08:40Z</dc:date>
    </item>
    <item>
      <title>Copilot Employee Self-Service Agent</title>
      <link>https://techcommunity.microsoft.com/t5/discussions/copilot-employee-self-service-agent/m-p/4529133#M91</link>
      <description>&lt;P&gt;I see that Microsoft has put a lot of efforts to marketing the Copilot Employee Self-Service Agent but it seems it is not available for every tenant.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have already checked on several small and mid ones (5-2k users) and cannot install it.&amp;nbsp;&lt;BR /&gt;As I understand from what I already red and saw, this is a template that should be available to you when you start building agents. Unfortunately when I enter Copilot Studio and enter in the search ESS (abbrevation from Employee Self-Service) I got only those two marked red filtered.&amp;nbsp;&lt;BR /&gt;When I installed IT Helpdesk, I do not see topics related to HRSD in ServiceNow which I need.&amp;nbsp;&lt;BR /&gt;I found the &lt;A class="lia-external-url" href="https://github.com/microsoft/Employee-Self-Service-Agent-Developer-Kit" target="_blank"&gt;Employee-Self-Service-Agent-Developer-Kit&lt;/A&gt; that contains same examples of the ServiceNow HRSD topics, but when I copy the code of those to my agent I got some references to topics that I do not have.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anyone has struggled with the same? Or maybe you have access to the ESS agent and can share the topics with me?&lt;/P&gt;&lt;P&gt;Michal&amp;nbsp;&lt;/P&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jun 2026 10:39:49 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/discussions/copilot-employee-self-service-agent/m-p/4529133#M91</guid>
      <dc:creator>MichalZiemba</dc:creator>
      <dc:date>2026-06-18T10:39:49Z</dc:date>
    </item>
    <item>
      <title>Learn Expert program ending in June</title>
      <link>https://techcommunity.microsoft.com/t5/discussion/learn-expert-program-ending-in-june/m-p/4528923#M39</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Hi everyone, &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;I wanted to share an important update with you directly.&lt;/P&gt;&lt;P&gt;As some of you may have already heard, the &lt;STRONG&gt;Learn Expert program is being retired, and all Learning Rooms — including ours&lt;/STRONG&gt; — will close at the end of June. This wasn’t a decision any of us expected, and I know it affects many of you who have been learning, sharing, and growing together here.&lt;/P&gt;&lt;P&gt;Our room, &lt;EM&gt;Modern Development with Azure Integration and AI&lt;/EM&gt;, has become a small but meaningful&amp;nbsp;&lt;/P&gt;&lt;P&gt;space for practical learning, real conversations, and hands‑on guidance. I would love to keep this community alive if possible.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;There is a path to continue: Learning Rooms can be transferred into an existing Microsoft Tech Community group — but only if a community owner approves the move.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If any of you are connected with a Tech Community owner or moderator who might be open to hosting our room, please let me know. Even a simple introduction could help us keep this space going.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;If a transfer isn’t possible, the room will officially close at the end of June. Until then, I’ll keep sharing updates and next steps so you know where to find me and how to stay connected.&lt;/P&gt;&lt;P&gt;Thank you for being part of this journey — your curiosity, questions, and contributions have made this room worth every moment.&lt;/P&gt;&lt;P&gt;Konstantinos&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jun 2026 19:43:41 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/discussion/learn-expert-program-ending-in-june/m-p/4528923#M39</guid>
      <dc:creator>KonstantinosPassadis</dc:creator>
      <dc:date>2026-06-17T19:43:41Z</dc:date>
    </item>
  </channel>
</rss>

