Recent Discussions
No option to go to message from search without opening side panel
When I search for a term (whether using All or Messages) and click on a result, I intend to go to that message in the chat or direct message with the whole window, just as if I had navigated there manually. I do NOT want to open an awkward side panel with that conversation. There are no right click options on the search results. How can I get rid of the side panel and just [Go to message]?25Views0likes1CommentPlanner task comments no longer send email notifications – critical regression
This change removed a previously existing core functionality without providing an adequate replacement. With the new Planner experience, task comments no longer trigger automatic email notifications to assigned users. This breaks a critical communication mechanism that many teams relied on for reliable task coordination. As a result, assigned users are no longer consistently informed about updates, introducing a high risk of missed information and operational issues in day-to-day work. There is currently no supported or enforceable alternative to ensure users are notified. Previous behavior: Task comments triggered automatic email notifications Assigned users were reliably informed Communication was traceable and consistent Current behavior: No automatic email notifications No configuration to restore this @mentions required (manual, error-prone, not enforceable) Microsoft Support has confirmed that this is by design and cannot be reverted. From an enterprise perspective, this is not just a design change, but a regression of critical functionality without an equivalent replacement. Request: Please restore automatic email notifications for task discussions or provide a reliable, enforceable alternative for notifying assigned users. Question to the community: How are you handling this change in real-world scenarios? Switching tools? Enforcing @mentions? Moving communication out of Planner? Would appreciate hearing how others are dealing with this.592Views4likes8CommentsAllow muting a person only for me
Sometimes I am in a meeting where one of the persons in the meeting is actually near me in the world outside the screen. In this case the sound is a bit maddening since there is a small delay between the sound from the person and the sound through the teams interface. In these cases, I would like to mute the person only for me since I am sitting near and can hear the person fine without headphones. Right now I need to takeoff headphones when the person is talking and putting it back as the person finishes talking.131KViews206likes156CommentsTeams meeting history
Seems like I have to be missing something, but I can't find this anywhere: where do I see a history of meetings I have joined in Teams (e.g., when I joined, when it stopped, and the duration)? I see "calls" under "History" in the "Activity" space, but don't see meetings, and through searching on here and online more generally, don't see a way to get that info.288KViews3likes15CommentsHow to find pictures/screenshots in a chat
HI All We use teams chat to share screenshots all the time, but it seems these shared screenshots are not saved in the file tab. It is very difficult to browse through the complete chat history to find them because I cant find a way to filter all the pictures, etc. Does anyone know the trick? Thanks120KViews5likes12CommentsRegarding Teams Meeting Media Transport Behavior in VDI Optimization Scenario
Hello Microsoft Teams Engineering Team, I am currently working on a Browser Content Redirection / media offload implementation for a VDI environment, where WebRTC media transport is handled through a local native component while the Teams application continues running inside the virtual desktop session. While testing, I observed that: 1:1 calls successfully receive audio and video media But in meetings auido / video RTP is never forwarded despite successful ICE, DTLS, and SRTP establishment DTLS ApplicationData traffic is present during meetings, suggesting DataChannel/SCTP activity Based on transport-level observations, it appears that Teams meetings may rely on SCTP/DataChannel communication for SFU video subscription management, while 1:1 calls do not require the same subscription flow. I wanted to ask whether: Teams meeting video forwarding depends on active bidirectional SCTP/DataChannel connectivity Meeting video subscriptions are expected to be coordinated over the WebRTC data channel/control plane Split ownership of media transport and control-plane transport could affect expected Teams meeting behavior in VDI optimization scenarios Thank you for your time and guidance. Best regards,Rajdev5Views0likes0CommentsCannot delete organisation from Teams
Hi, It appears to be impossible to delete an organization from Teams Please see the picture below. I am unable to remove the organization beginning with L. I have used my personal email for many years, so I should be the one in control of it! I am the owner/ admin of the email account. However there is no way to delete the rogue /linked organization to which I no longer have access. How can I take back full control of my email/Teams account and remove this rogue organization? I've clicked on everything I can find and nowhere else mentions this organization. Clicking on the organization in Teams just takes me to a page saying "Microsoft Teams Free (Classic) is no longer available" with options to upgrade. I don't want to upgrade I want it deleted! TIA86KViews12likes73CommentsAdaptive Cards in Teams channel messages: fixed narrow width — request for width control
Hi Teams Platform team, We post structured status reports as Adaptive Cards into a Teams channel. The card consistently renders at a fixed width of 448 px on a 1080p display at 100% scaling with a maximized Teams desktop client — well below the available channel message stream width. Wide multi-column tables get truncated or wrapped, which significantly hurts readability. What we've tried No card-level `width` property exists in the Adaptive Cards schema. `msteams.width: "Full"` is documented to apply only to Stageview / task module / tab — silently ignored in channel messages (tested). Same payload via three delivery paths — Incoming Webhook, Logic App "Post adaptive card in chat or channel", and Microsoft Graph `POST /teams/{id}/channels/{id}/messages` — all render at the same narrow fixed width. The constraint is in the Teams channel-message renderer, not in any delivery layer. Minimal repro payload (7-column results table; all field names and values replaced with generic placeholders): { "type": "message", "attachments": [ { "contentType": "application/vnd.microsoft.card.adaptive", "content": { "$schema": "https://adaptivecards.io/schemas/adaptive-card.json", "type": "AdaptiveCard", "version": "1.5", "msteams": { "width": "Full" }, "body": [ { "type": "TextBlock", "text": "Pipeline Report — run-001", "weight": "Bolder", "size": "Medium" }, { "type": "Table", "gridStyle": "accent", "firstRowAsHeaders": true, "columns": [ { "width": 2 }, { "width": 1 }, { "width": 2 }, { "width": 1 }, { "width": 2 }, { "width": 1 }, { "width": 1 } ], "rows": [ { "type": "TableRow", "cells": [ { "type": "TableCell", "items": [{ "type": "TextBlock", "text": "Col-1", "weight": "Bolder", "size": "Small" }] }, { "type": "TableCell", "items": [{ "type": "TextBlock", "text": "Col-2", "weight": "Bolder", "size": "Small" }] }, { "type": "TableCell", "items": [{ "type": "TextBlock", "text": "Col-3", "weight": "Bolder", "size": "Small" }] }, { "type": "TableCell", "items": [{ "type": "TextBlock", "text": "Δ Col-3", "weight": "Bolder", "size": "Small" }] }, { "type": "TableCell", "items": [{ "type": "TextBlock", "text": "Col-4", "weight": "Bolder", "size": "Small" }] }, { "type": "TableCell", "items": [{ "type": "TextBlock", "text": "Δ Col-4", "weight": "Bolder", "size": "Small" }] }, { "type": "TableCell", "items": [{ "type": "TextBlock", "text": "Status", "weight": "Bolder", "size": "Small" }] } ] }, { "type": "TableRow", "cells": [ { "type": "TableCell", "items": [{ "type": "TextBlock", "text": "item-a", "size": "Small" }] }, { "type": "TableCell", "items": [{ "type": "TextBlock", "text": "mode-x", "size": "Small" }] }, { "type": "TableCell", "items": [{ "type": "TextBlock", "text": "0.000/0.000","size": "Small" }] }, { "type": "TableCell", "items": [{ "type": "TextBlock", "text": "+0.00%", "size": "Small", "color": "Good" }] }, { "type": "TableCell", "items": [{ "type": "TextBlock", "text": "0.000/0.000","size": "Small" }] }, { "type": "TableCell", "items": [{ "type": "TextBlock", "text": "-0.00%", "size": "Small", "color": "Attention" }] }, { "type": "TableCell", "items": [{ "type": "TextBlock", "text": "✅ Pass", "size": "Small" }] } ] } ] } ] } } ] } `msteams.width: "Full"` is present but has no visible effect in the channel message context. Feature request Either of: Honor `msteams.width: "Full"` in channel-message context (not just Stageview/task module/tab), OR Add a card-level property (e.g. `msteams.channelWidth: "Full" | "Default"`) explicitly scoped to channel messages. Is this a known limitation with an existing tracking item, or should we also file it on the M365 Feedback Portal for upvotes? Thanks!97Views0likes5CommentsAdaptive Cards Error: “The remote endpoint returned an error HTTP 401."
Hi All, When trying to send an adaptive card with Action.Http through Power Automate, the first flow works perfectly, sends the email, I type in the information I need to send back, but when I go to hit submit, it returns the error: “The remote endpoint returned an error HTTP 401.". However, I checked the 2nd flow which receives the Http request on Postman and everything is working on that end as well. I registered my team alias to send emails and that was approved so I am not sure why this is happening. Any help would be much appreciated. Thanks!19KViews3likes6CommentsTeams for Android Auto - Receive Messages but Replies always Fail
I have a Pixel 10 with all latest OS and Patches as well as latest MS Teams App. For months now I've had a problem where all my incoming work messages on Teams come through fine, but when I attempt to reply it never sends the message. When I look at my Teams App there is a red retry icon because the message failed to send. When I send a new message in the app it works fine but the previous reply through Android auto remains in retry status ie Failed. Is anyone able to reply to a Work account teams message using Android Auto? It has never worked for me.14Views0likes0CommentsCustom App (Static Tab) with SharePoint URL stays blank on first load in Teams Desktop Client
Hello Teams Developer Community, We have deployed a custom Teams app (v1.25) that uses a Static Tab to display our company's SharePoint intranet portal. The contentUrl and websiteUrl point to our SharePoint site. [The Issue] When a user clicks the app for the very first time in the Teams Desktop Client (New Teams), the screen remains completely blank (white loading screen). However, if the user clicks away to another app (like Chat or Teams) and then clicks back to our custom app, the SharePoint page loads perfectly. [Observations] This issue does NOT happen on Teams Web Client (browser). It loads instantly there. Clearing the Teams Desktop cache does not solve the problem. It seems to be related to WebView2 authentication/SSO redirect loops inside the iframe. I tried adding "showLoadingIndicator": true in Developer Portal, but the schema automatically strips it out upon saving. [Question] Is there a specific parameter we need to append to the SharePoint URL, or specific domains we must add to "validDomains", to prevent this initial blank screen caused by auth delays in the Desktop Client? Any guidance on handling this WebView2 rendering delay would be greatly appreciated. Thank you.91Views0likes3CommentsOracle Eloqua integration for Teams webinars
Would like to see Microsoft add or support an integration with Oracle Eloqua for Teams Webinars, as our Marketing team needs this integration in order to fully migrate to Microsoft Teams for our customer facing events. They continue to use an antiquated (competitor) platform because it does have the Eloqua integration.2.7KViews1like3CommentsMicrosoft teams personal package
Dear community I am looking for a Microsoft package with Teams that supports 300 users. Can the personal package work out for this? I was trying to pay for one month, but it was not allowing me to change the country, only the US. Kindly help out if anyone can.6Views0likes0CommentsSet work location via API (Graph?)
Hey community! The new work hours and location feature is rolling out for Outlook and Teams: https://blog.admindroid.com/work-hours-and-location-in-outlook-for-efficient-collaboration/ Does anyone know who to read and write this information (especially the location) via API / Microsoft Graph? This is a nice feature and we would like to set this programmatically. Thank you very much! Best regards, Jens15KViews1like21CommentsAnything inside Teams for people management you use and can recommend?
We currently have to use one tool for goals, another for feedback, a spreadsheet for review tracking, Teams for 1:1s, and then some shared doc for engagement notes. Leadership asked me if theres anything that does all of this inside Teams so they dont have to keep jumping around. We're a mid-size company (around 200 people) fully on Microsoft 365. Anyone found a good all-in-one solution that actually works inside Teams?104Views0likes4Commentssmall white window that opens during sharing in a meeting
Hi, I've Teams vers. 26120.3106.4722.3411. For some time when I access to a meeting and sharing the screen, a window or a presentation, a small white windows appears at the bottom right and I cannot close it. To close this window and to prevent it from opening again I need to disconnect to Teams also for 2-3 times. Well, how could I solve a such issue permanently? Thanks This is the window image that I can capture:93Views1like0CommentsAnyone found a good way to run performance reviews inside Teams?
Our company just switched to doing everything in Teams and the one thing that still lives outside is performance reviews. We use a separate web app that nobody logs into until the last minute and managers hate it. Is there anything that actually handles the full review cycle with self assessments, manager ratings, maybe even 360 feedback? Our IT team said they'd prefer something that uses our existing M365 directory so we dont have to manage another user list.53Views0likes1CommentHow are you running 1:1 meetings inside Teams without it turning into a mess?
Right now were using a shared OneNote for agendas and action items but honestly nobody updates it and half the time the meeting turns into a random chat with no structure. I tried using Planner tasks as a workaround but thats clunky because theres no real connection between the task and the meeting itself. Has anyone found a good way to keep 1:1 agendas, notes, and follow ups all in one place inside Teams? We have about 40 people so it needs to scale a bit.98Views2likes3Comments
Events
Recent Blogs
- As Microsoft Teams Premium continues to expand its capabilities ensuring proper license assignment and tenant configuration is critical for a seamless user experience. To support this, we're excited ...May 27, 2026110Views0likes0Comments
- Teach Teams Your Company's Language If your Teams transcripts have ever mangled a product name, missed an acronym, or turned an industry term into nonsense, you are not alone. Microsoft built custo...May 26, 2026170Views0likes0Comments