Settings
2493 TopicsBot configuration config/fetch returns same channel ID when switching channels within same team
Summary When invoking a bot’s configuration flow (configuration.fetchTask) via an @mention-based settings entry point across different channels within the same Team, the request body consistently contains the same channelId, even after switching channels. https://learn.microsoft.com/en-us/microsoftteams/platform/bots/how-to/bot-configuration-experience?tabs=teams-bot-sdk1%2Cteams-bot-sdk2%2Cteams-bot-sdk3 This makes it impossible to reliably determine which channel initiated the configuration. Environment Microsoft Teams (desktop client) Bot installed at team scope Same Team, multiple channels Bot supports team scopes. Configuration enabled via manifest: "configuration": { "team": { "fetchTask": true } } Steps to Reproduce Install the bot into a Team with multiple channels Navigate to Channel A Invoke the bot configuration using an @Bot settings / configuration entry point Observe the incoming config/fetch request payload Note the channelId in the request body Switch to Channel B (same Team) Invoke the same configuration entry point again Observe the incoming config/fetch request payload Expected Behavior The config/fetch request body should include a channel identifier corresponding to the channel where the configuration was initiated, e.g.: channelData.channel.id or another channel-scoped identifier that uniquely identifies the initiating channel Actual Behavior The config/fetch request body always contains the same channel ID The channel ID does not change when switching channels The value appears to be: either the Team’s General channel or a cached / team-level channel context As a result, the bot cannot determine which channel the user intended to configure. Impact This behavior prevents implementing per-channel configuration using the bot configuration experience because: Configuration requests cannot be reliably scoped to the initiating channel All configuration actions appear to target the same channel Users configuring different channels in the same Team unintentionally overwrite the same settings Additional Notes This occurs within the same Team Reproduced consistently across multiple channels Observed even when the configuration is invoked after explicitly switching channels Behavior suggests the configuration context may be team-scoped rather than channel-scoped, but this is not clearly documented28Views0likes1CommentProblems with synchronizing speed dial buttons between Yealink MP56 E2 and Yealink EXP50
Hello everyone, I have the following problem. We have several Yealink MP56 E2 Teams phones with connected Yealink EXP50 key extensions. Unfortunately, for about half a year now, the synchronization of speed dial keys between the phone and the key extension has only been possible to a limited extent. Specifically, you can create contacts on the phone and add them to speed dial via the phone. However, in 99 out of 100 cases, this is not synchronized. The same applies to deleting contacts. What's strange is that the deleted contact is not actually deleted from the phone itself and reappears after 2 seconds. I had already read that this error has occurred from time to time in recent years. Unfortunately, there has been no noticeable improvement in the last six months. I have already tried the following: Resetting the phone, rebooting after changes, disconnecting the connection between MP56 E2 and EXP50, logging back into the phone, updating the phone's firmware and the phone's Teams app. Unfortunately, none of this has been successful. Does anyone else have any ideas or has Microsoft made an official statement that there are problems here?68Views0likes1CommentInbound calls to teams number show my company name and not the callers ID
Teams Voice, number type Operator Connect. Issue is when an external call is received the caller ID shows my company name and not the actual callers ID. The only policy enabled is a global default policy with the following settings Block incoming Caller ID - OFF Override the caller ID policy - ON User claims inbound caller ID used to work until an issue recent where the number was unassigned from the user and then re-assigned back to him.19Views0likes0Commentsexternal company telling me i need to allow my users to enter their meetings
does this make sense to anyone? I have an outside company telling me that they are creating Teams meetings for my company and potential candidates. She indicates that my company is the only company that is not allowed to start the meetings she creates. This does not happen to any of her other customers. She's asked me that I get this fixed on my end. What am i missing here? Is there some sort of setting in my tenant that says do not allow my users to start an external teams meeting?40Views0likes1CommentRestore Name / Timestamp Copy/Paste FEATURE in MS Teams
The ability for copy / paste to carry the sender's name and the timestamp of the comms in MS Teams was removed a while ago. Its seriously a ridiculous thing to fully remove. There are many many industries and many many use cases where having the name and timestamp EASILY copy / paste-able is NEEDED. Your devs should update with an option in settings to include Name and Timestamp on copy/paste actions in Teams. Going through multiple windows / options screens each time I want to pass along critical information is tiresome and annoying. Ad-hoc snip-it SS are as well. How narrow-sighted this change was is seriously concerning coming out of a multi-billion dollar company.293Views6likes1CommentUnable to get a licensed teams / assigned Business Basic
I've encountered a problem since I started working in a new company, the exploratory license was assigned to me automatically, with which I could use MS Teams for 1 month, then the license expired and everybody in the company has Business Basic, which is assigned automatically (you can't assign it, manually where checkboxes are), ignorantly I thought that it would be assigned automatically, but it isn't, now i'm locked outside the teams. Apparently this Business Basic licenses that everybody uses are assigned to all in the company group, but I've checked with the boss who has admin rights and I am in that group and not as a guest or something but as an user, same as everyone else. So idk, how to solve this problem, if anyone on this forum has any ideas, because I'm out...59Views1like1CommentRequire approval from IT to join a Team and/or Shared Channels
My company has two sides to its business. Both sides are under the same Microsoft 365 tenant. They can be called Group A and Group B. Group A should not be able to add those from Group B into teams and channels on their own. Likewise, Group B should not be able to add those from Group A. If either side wants to add the other to a team or channels, they should have to get approval from IT, with IT making the additions to the team or channel. We would rather not have this just done over emails. This has to be done while still allowing members of Group A and members of Group B the ability to have 1 on 1 and group chats. Does anyone have any suggestion how to do this?63Views0likes1CommentPowershell adding a existing holiday to Auto Attendant
Hello I have to add an existing Holiday to Auto Attendant and have this script # Connect to Microsoft Teams # Connect-MicrosoftTeams # Variables - Replace with your actual values $autoAttendantName = "AA_Test" $holidaySetName = "Holiday" #$audioFilePath = "Paht\test.wav" # Path to your audio file # 1. Upload Audio File as Prompt $content = [System.IO.File]::ReadAllBytes('Path\test.wav') $audioFile = Import-CsOnlineAudioFile -ApplicationId "OrgAutoAttendant" -FileName "test.wav" -Content $content $audioPrompt = New-CsAutoAttendantPrompt -AudioFilePrompt $audioFile # 2. Create Holiday Call Flow with Disconnect Option $holidayCallFlow = New-CsAutoAttendantCallFlow -Name "Holiday Call Flow" ` -Greetings @($audioPrompt) ` -MenuOptions @( New-CsAutoAttendantMenuOption -Action Disconnect -DtmfResponse Automatic ) # 3. Get existing Auto Attendant and Holiday Set $aa = Get-CsAutoAttendant -Namefilter $autoAttendantName $holidaySet = Get-CsAutoAttendantHolidaySet -Name $holidaySetName # 4. Link Holiday Set and Call Flow to Auto Attendant Set-CsAutoAttendant -Identity $aa.Identity ` -HolidaySets @($holidaySet.Identity) ` -HolidayCallFlow $holidayCallFlow.Identity # 5. Verify Get-CsAutoAttendant -Identity $autoAttendantName | Select-Object Name, HolidaySets, HolidayCallFlow I do get following error Microsoft.Teams.ConfigAPI.Cmdlets.internal\Import-CsOnlineAudioFile : Expected '{' or '['. Was String: Exception. At C:\Program Files\WindowsPowerShell\Modules\MicrosoftTeams\7.5.0\custom\Merged_custom_PsExt.ps1:7245 char:13 + $internalOutput = Microsoft.Teams.ConfigAPI.Cmdlets.inter ... + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : NotSpecified: (:) [Import-CsOnlineAudioFile_ImportExpanded], ParserException + FullyQualifiedErrorId : Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Cmdlets.ImportCsOnlineAudioFile_ImportExpanded Where is the mistake Thanks and have a great day JFM_12Solved147Views0likes4CommentsSpellchecking settings in MacOs Teams app
The 'Manage spellchecking languages' setting doesn't seem to work. What ever languages I choose and add there (instructions say three is the maximum) does not take effect or stay added. When I go back to the setting there are no languages added, even though I have added them many times. Only way to change the spellchecking language seems to be to change the language of the app itself, which isn't very convenient as it requires app restart. Also there is no setting to disable the spellchecking. Teams app version: 25317.1601.4113.6967108Views0likes1CommentStarLeaf + Teams integration
Hi all, I have a user that wants to integrate StarLeaf into one of his Microsoft Teams group. He is not the owner of the group. The issue he reported: "Currently, Starleaf for Teams is installed, but when there is any attempt to setup using the integration token generated from our systems admin in Starleaf, an error occurs." The link for instructions he used: https://support.starleaf.com/integrating/starleaf-for-microsoft-teams/#3-Install+StarLeaf+for One of the errors he gets: "Something went wrong. Reinstall StarLeaf for Teams." Any idea of what to do? Kind regards, Dino1.8KViews2likes7Comments