"Microsoft Teams"
57 TopicsTeams Panels - check-in issues
Hey, anyone experience issues with Teams Panels check-in feature? We have seen that the "Check-In" button on the panel is there but suddenly is dissapears. When that happens the rooms is not released and the email "Booking declined: No one checked in, so the room was automatically removed from your meeting to make it available for others." is never sent to the organizer.1.3KViews1like12CommentsBreakout room issues to assign user to a room
Anyone else seen issues to assign a user to a break out room? Screenshot in Swedish but the "i" say "This user can't access breakout room" At the time for testing that user was signed in to Teams with an external identity and used Edge browser. Ended meeting and rejoined and this time it worked but that is not the case all the time. Issue seems to be random. This happens quite often last couple of months, anyone seen this?1KViews3likes6CommentsApprovals to shared mailbox
Hi, We use the "approvals" app in Teams to coordinate leave with colleagues and managers. The app works, but we still have to manually place the approved leave request in a shared mailbox. Is there a solution within the app "approvals" or via PowerAutomate to make this happen automatically? RC171Views0likes1CommentDeep links for published apps ignoring entityId in the new Microsoft Teams client
For apps already published in the Microsoft Teams store, deep links to personal static tabs are not working correctly in the new Teams client. To reproduce: - Paste a link to a personal tab of an app in the channel chat. - Click on link in new Teams web client. - Note that the link takes you to the app, but it always loads the first static tab in the app, ignoring the entityId provided in the link. - Try clicking on the link in the old Teams web client. - Note that you are now correctly redirected to the personal static tab associated with the entityId in the link. Sample link: https://teams.microsoft.com/l/entity/6eacb5f0-68b0-46f0-9507-9e906c6861fc/about However, if I try this same use case on a custom uploaded app (not published), I am correctly redirected to the appropriate static tab. I am using the following documentation for building the link - https://learn.microsoft.com/en-us/microsoftteams/platform/concepts/build-and-test/deep-link-application?tabs=teamsjs-v2#configure-deep-link-to-browse-within-your-app-manually857Views0likes6CommentsEntra Groups and managing Access to Teams or Town Hall
Wouldn't it be great if there was a way to grant access to a Teams or Town Hall meeting using an Entra ID Group without inviting all the users in the Group? This way you could send the meeting link to users in the Group as needed. For large organizations with many external partners managed in Entra, this would be very beneficial. This can be done already with the meeting recordings in Stream via the Share button.114Views0likes0CommentsNew Microsoft Teams issue, This bot is disabled. Contact your IT admin for more information
This issue is happening only on new Microsoft Teams desktop application for some selected users. It works fine with old Teams classic and new browser application for all users. Senario: When an effected users click on adaptive card button, user is getting error "This bot is disabled. Contact your IT admin for more information". Also issue gets resolved automatic after few hours. Then some other set of users start facing the same issue.3.5KViews0likes12CommentsNew Teams on terminal servers
We have Teams installed on our terminal servers (Windows Server 2022) as well as locally. The video and voice functions aren't usable on the terminal servers, but everything else works (most notably the Outlook addin). I've been letting users decided whether to try the new Teams. I've been using it locally for months and not recently had any issues. It initially seemed OK on the terminal servers too. I decided to set it as the default in the Teams admin centre recently, and in setting up a couple of new user profiles on a terminal server the problems have started to come to light. Specifically: 1) Teams doesn't want to update - it displays a restart and update icon on the menu, but this doesn't actually cause it to update. Even logging in as an admin and using right-click run as administrator doesn't make any difference. The standalone installer uses an msix package, which doesn't work on WIndows Server (I am aware that there are ways to get it to run these packages, but it shouldn't be necessary and I'd rather avoid it for now if I can) 2) The Outlook addin doesn't work (as in doesn't appear in Outlook). I've looked for Microsoft documentation, and all I can find is this: https://learn.microsoft.com/en-us/microsoftteams/new-teams-vdi-requirements-deploy Which doesn't seen to specifically refer to local terminal servers at all! Assuming that much of what applies to AVD will also apply, I've checked the registry settings it lists and they all appear correct. Today I have created a new test VM, Server 2022, terminal server role, and installed Office using the normal XML config file method (using the latest available .exe for this). Office installed, and as expected only included the new Teams, not the old one. Still doesn't work properly - even after a clean install Teams wasn't up to date and the update now button didn't work. Manually closing and opening Teams caused it to update in this case (that doesn't work with the live terminal servers), but it's unclear whether this is going to continue to work reliably, or why it won't update on the live servers. The Oulook addin doesn't appear at all, although the settings and registry entries as listed in the link above all appear correct. Anyone got any ideas? The lack of mention in the documentation suggrsts that - as usual - Microsoft isn't making any effort to accommodate those using on-prem session hosts. Thanks66KViews0likes24CommentsSend messages/notifications to a user on MS Teams
Hello, I am currently integrating MS Teams into our SaaS Product. The goal of the integration is to send notifications (messages) from our service to the appropriate user(s) in MS Teams. Eventually, we want to make the integration interactive, but step one is just messages. I have already integrated with Slack and I am working on MS Teams. With Slack, I was able to request a "bot token" when the user authenticates through the OAuth2 flow (not an AI Bot). I realize MS Teams most likely won't be that easy. (But if it is, please let me know). MS Teams is a part of the entire MS ecosystem while Slack is just Slack. So a simple "auth as a bot" may not exist. This is my flow. I would appreciate some advice on if this flow seems correct. If not, what's the correct flow. If so, what am I missing? Step 1 OAuth2 with permissions { "scopes": [ "TeamsAppInstallation.ReadWriteSelfForTeam", "TeamsAppInstallation.ReadWriteAndConsentSelfForTeam", "email", "offline_access", "openid", "profile" ] } Step 2 Get list of user's teams (so they can choose the team) - GET https://graph.microsoft.com/v1.0/me/joinedTeams Step 3 Get list of Installed Apps (to check if we're already installed) - GET https://graph.microsoft.com/v1.0/teams/[teamId]/installedApps Step 4 Create (install) my app to the team - POST https://graph.microsoft.com/v1.0/teams/[teamId]/installedApps {"teamsApp[at]odata.bind":"https://graph.microsoft.com/v1.0/appCatalogs/teamsApps/ea99b1d4-8e99-4f29-b02a-a42ef14dd444"} - 404 Response { "error": { "code": "NotFound", "message": "No Teams App found for id 'teamsAppId'.", "innerError": { "date": "2024-08-06T16:35:17", "request-id": "b1a2321f-ba78-4600-8677-bcd89d211517", "client-request-id": "b1a2321f-ba78-4600-8677-bcd89d211517" } } } I can't seem to figure out what id is used to install the Teams App. Following Steps Questions Once the TeamsApp is installed, do I continue to use the user's access token to send messages? Or do I use the ClientId/Secret for client auth and send messages as the app I created in "App Registration"? The App has been linked to the Teams App in the "webApplicationInfo" section of the teams app manifest. Is that enough? What graph endpoints should I use? Notable Items I've created an "App Registration" object on portal.azure.com. That's where I'm getting the ClientId and ClientSecret for the OAuth2 flow. As well as setting OAuth2 permissions. I've created an "App" object on dev.teams.microsoft.com. This is where I'm getting the teamsAppId. This app has been published to my org. It has been approved by an admin. I created an "Azure Bot", but I don't think I need this. I tried to create a bot at dev.botframework.com, but the create flow sends me back to portal.azure.com to select a service to integration. Which I don't want to do. Regarding Tutorials I've gone through several tutorials, but I am not finding what I need. I've also had trouble finding tutorials that explain every step of how to get things setup up. Most tutorials have VSCode lifecycle tasks that hide what I think I need. Again, any help would be appreciated. Thank you in advance.688Views1like3CommentsTeams forwarding calls coming from specific group
Hi friends, I would like to forward my calls to a voicemail in Teams coming from a specific group of users and not from every caller. They are internal users and group would be a Microsoft365 group. Is it possible? ThanksSolved822Views0likes4CommentsTeams elevated admin access remote assistance
According to Remote assistance for managed devices - Intune for Education | Microsoft Learn when I do a remote assistance with someone in Teams if I understand the article right, I should be able to see the screen that asks for admin credentials instead of just getting a black screen. How do I go about making this happen and is this only a feature in Intune for Education and not other Intune versions?396Views0likes0Comments