Recent Discussions
Missing something obvious? Teams App install with custom parameters?
This one is really throwing our team for a loop! We are trying to pass two custom parameters (ID & Token) during app installation Each customer in our application has a unique ID and Token, which we need to pass when they install our Teams bot. We attempted to append these parameters to the installation URL as follows: 🔗 Installation URL: https://teams.microsoft.com/l/app/feea88de-b85f-4a8a-a724-d076d8de24af?source=app-details-dialog&context={id:%20%22%22,%20token:%20%22%22} However, we are unable to retrieve these parameters in the installationUpdate callback. What is the correct approach to pass and retrieve custom parameters (ID & Token) during app installation? Thank you for any insight!104Views0likes3CommentsMoving from skype to teams does not migrate my chat history
Hello, I have tried to login to teams using my skype username. It prompt me to merge my skype account with my personal email. I clicked yes. it successfully logged me in into Ms Teams. I cannot see my skype chat history into teams and also not all of my contacts are there. I have enabled skype account contacts to sync from Settings => People => Sync contact => Manage but still not all contacts are synced and no chat history at all. Anyone knows how can I import the chat history as well? Thank you in advance160Views1like1CommentRSC permissions cause app to fail installation in personal scope
I am trying to update an existing up to send notifications. The plan is to use RSC permissions for it. I configured the manifest (v 1.19) with the following scopes: "authorization": { "permissions": { "resourceSpecific": [ { "name": "TeamsActivity.Send.Chat", "type": "Application" }, { "name": "TeamsActivity.Send.Group", "type": "Application" }, { "name": "TeamsActivity.Send.User", "type": "Application" } ] } }, I then sideloaded it successfully with this configuration into a team and also into a chat. However when I try to install it into the personal scope directly I get the error in a dialog box: Something went wrong In the network tab of the web inspector I see that this call fails with 403: https://teams.microsoft.com/api/mt/emea/beta/users/apps/definitions/appPackage The body of the response says: {"errorCode":"WebApplicationInfoIdConflictOnSideloadingIntoTeam"} However, when I change the included permissions in the manifest to only TeamsActivity.Send.Group the app installs successfully into personal scope "authorization": { "permissions": { "resourceSpecific": [ { "name": "TeamsActivity.Send.Group", "type": "Application" } ] } }, So I guess it has nothing to do with an id conflict. I also made sure to remove all old instances of the sideloaded app before (which was never a problem so far). How can I use all three RSC scopes in my app manifest and still install the app into the personal scope. Or what could be wrong? Anything I could check to figure out why this is not working but only the TA.Send.Group scope?10Views0likes0CommentsTeams app is crashing if window.location.hash it set
We are using the Teams Channel Tab app with a component that replies on the hash parameter. On click of a button from a list of folder within the Tab, we are trying to set the window.location.hash. Another component uses an event listener to listen to the hashChange and retrieves this hash parameter that was set and uses for further processing. This works perfectly fine in Outlook addin as we are rendering the same component in Teams and Outlook However, as soon as I set the window.location.hash, the app crashes without any error in Developer tool Console. We have hosted the Tab app at - "https://localhost:8080/#/channel" I am thinking of 2 possible causes for this crash- 1. Is the app trying to crash when I am setting the hash as it already has '#' in the url? 2. Is there a limitation where we cannot set and get window.location.hash while inside the Teams Tab app?19Views0likes2CommentsTeams room reservation setting
Hello, Not sure if anyone has encountered the same dilemma as I have, but I can't seem to locate this Teams Room reservation setting anywhere. I've check on both the Teams admin portal setting & the device setting. I have basic & pro license and still do not see this feature anywhere. Device: MaxHub XCoreKit Teams app: TMicrosoft managed rooms 5.24.14101.0 This is for Panel setting but we only have a touchscreen console in the room. Settings > Device settings > Teams admin settings > Meetings and then turn off Allow room reservations. Can't find the below option (stock img). Let me know if you need anything else. Thank you!17Views0likes0CommentsTemas Public Preview - Not keeping the settings
Hi all, Not sure if anyone is having the same issue but recently, we notice that the Teams Public Preview toggle box is unticking automatically and every morning I need to ticked back again not to mention, that I've notice is going back to the "classic" settings where chats and teams are separated. The only around is to quit teams and reopen and it goes back to the new streamline chats & channels all in one place. Also, just this week alone I got about 4 updates on Teams, any seem the same behaviour?54Views0likes1CommentRandom message saying Q&A enabled sent to co-organisers only on Town Hall event.
Hi all, just had an update message sent to my co-organisers, stating that Q&A had been enabled. The event has been set up and published for a week, with no amendments to the event at any time. Is there a reason for this, it seems to coincide with our companies Windows 11 roll-out. Thanks 1081JB7Views0likes0CommentsAuto Attendant Call Forwarding: How to Mask Caller ID for External Transfers
Hello everyone, I have a question about the configuration of the Auto Attendant. A brief explanation of the problem: I am currently creating a hotline for one of our business units. A routing point of the Auto Attendant should be that the number 3 is forwarded to the specified external number by pressing a key. Everything works as it should. Now comes the problem: This number, to which the call is then forwarded, is the location of an attendant console (AC-Win system) of our Hipath4000 telephone system of one of our receptions. This can display which hotline the caller is currently coming from. This requires the Auto Attendant to remove the number of the actual caller when forwarding and to forward the call in the context of another predefined number. Is it possible to realize this? Via caller ID policies or something similar? Best regards Elias9Views0likes0CommentsNeed help intercepting outgoing messages and accessing chat history in Teams bot (python)
Hi everyone, I’m relatively new to programming and have been experimenting with the Teams AI Library in Python. I’ve created a basic bot application using the Teams Toolkit with the Custom Engine Agent template. So far, so good, but I’m stuck on two specific tasks and would appreciate some guidance. Here’s what I’m trying to achieve: Intercept outgoing messages before they are sent: I’d like to capture and potentially modify messages just before they are sent out by the bot. Access the conversation history: I want to retrieve the chat history for the current conversation. I’m wondering if there’s a simple way to do this without overhauling the existing logic. Specifically: Can I use a decorator in bot.py to intercept outgoing messages without disrupting the rest of the bot’s functionality? Is there an even simpler solution that I might be missing? TL;DR: New to programming, using Teams AI Library in Python with a basic bot. Need to: Intercept outgoing messages before they’re sent. Access conversation history. Is a decorator in bot.py the way to go, or is there a simpler solution? Thanks! Looking forward to your suggestions!34Views0likes3CommentsOutlook plugin: Updating manifest doesn't work, Update TenantAppDefinition failed
Hello, I raised this request to the official MS customer service already and they couldn't help. The problem is as follows: We are developing an Outlook Add-In using the 'new' JSON manifest way. So far, we deployed our plugin to the Azure BLOB storage destination as it's specified by Teams Toolkit. Also, we were able to register it in the MS Teams Admin Center. Now we wanted to make some changes to our icons registration in the manifest file and ran into an unknown exception. For testing, we reverted those changes and only increased the version number. However, the error message remained as-is, although the same manifest worked some time (maybe 1-2 weeks maybe) ago. There were no changes to the manifest file since then, except an increase in the version number. The manifest can be submitted without any issues if the "ribbons" part is completely removed. However, it passes all validations described in https://learn.microsoft.com/en-us/office/dev/add-ins/testing/troubleshoot-manifest . All icons match the specifications. The same happens if we submit it as a new app. This is the error message that we could intercept in the browser's DEV Tools when submitting the manifest in the appPackage to MS Teams Admin Center (manage existing app). Sensitive info was removed: { "error": { "code": "BadRequest", "message": "Update TenantAppDefinition failed, UserId: 'beefbeef-beef-beef-beef-beefbeefbeef', TenantId: 'beefbeef-beef-beef-beef-beefbeefbeef', Exception: 'Microsoft.SkypeSpaces.MiddleTier.Common.ServiceException: Failed to execute settings store request: https://emea.settings.teams.internal.office.com/v1.0/settings/teams/apps/beefbeef-beef-beef-beef-beefbeefbeef/definitionv2, StatusCode: 400, ReasonPhrase: Schema validation errors, X-MSEdge-Ref: beefbeef-beef-beef-beef-beefbeefbeef\r\n at Microsoft.SkypeSpaces.MiddleTier.BackendServices.SettingsStore.SettingsStore.ExecuteRequestAsync(HttpRequestMessage requestMessage, String requestName, String entityType, String facet, Boolean throwOn404) in C:\\a\\_work\\1\\s\\Source\\BackendServices\\BackendServices\\SettingsStore\\SettingsStore.cs:line 339\r\n at Microsoft.SkypeSpaces.MiddleTier.BackendServices.SettingsStore.SettingsStore.PutSettingAsync(String entityType, String entityId, String facet, String value, String ifMatch, String tenantIdForRegionLookup) in C:\\a\\_work\\1\\s\\Source\\BackendServices\\BackendServices\\SettingsStore\\SettingsStore.cs:line 146\r\n at Microsoft.SkypeSpaces.MiddleTier.BackendServices.SettingsStore.SettingsStore.PutSettingAsync(String entityType, String entityId, String facet, String value, String ifMatch) in C:\\a\\_work\\1\\s\\Source\\BackendServices\\BackendServices\\SettingsStore\\SettingsStore.cs:line 118\r\n at Microsoft.SkypeSpaces.MiddleTier.BackendServices.SettingsStore.SettingsStore.PutSettingAsync(String entityType, String entityId, String facet, String value) in C:\\a\\_work\\1\\s\\Source\\BackendServices\\BackendServices\\SettingsStore\\SettingsStore.cs:line 100\r\n at Microsoft.SkypeSpaces.MiddleTier.Provider.SettingsStore.RegionalSettingsStoreProvider.SetAppDefinitionAsync(String appId, AppDefinitionItem appDefinition) in C:\\a\\_work\\1\\s\\Source\\Provider\\Provider\\SettingsStore\\RegionalSettingsStoreProvider.cs:line 1910\r\n at Microsoft.Teams.MiddleTier.Apps.AppDefinitionsStore.Commands.CustomAppDefinitionWriter.<>c__DisplayClass10_0.<<UpdateAsync>b__0>d.MoveNext() in C:\\a\\_work\\1\\s\\Source\\Modules\\Apps\\MiddleTier.Apps\\AppDefinitionsStore\\Commands\\CustomAppDefinitionWriter.cs:line 103\r\n--- End of stack trace from previous location ---\r\n at Microsoft.SkypeSpaces.MiddleTier.Common.InstrumentedAsyncFunc`1.ExecuteAsync()\r\n at Microsoft.Teams.MiddleTier.Apps.AppDefinitionsStore.Commands.CustomAppDefinitionWriter.UpdateAsync(CustomAppDefinitionWriteContext context) in C:\\a\\_work\\1\\s\\Source\\Modules\\Apps\\MiddleTier.Apps\\AppDefinitionsStore\\Commands\\CustomAppDefinitionWriter.cs:line 113\r\n at Microsoft.Teams.MiddleTier.Apps.AppDefinitionsStore.Commands.CustomTenantAppDefinitionWriter.UpdateAsync(CustomAppDefinitionWriteContext context) in C:\\a\\_work\\1\\s\\Source\\Modules\\Apps\\MiddleTier.Apps\\AppDefinitionsStore\\Commands\\CustomTenantAppDefinitionWriter.cs:line 56\r\n at Microsoft.Teams.MiddleTier.Apps.Providers.AppsProviderTenant.UpdateTenantAppDefinitionAsync(AppDefinitionItem appDefinitionItem, ZipArchive appPackage) in C:\\a\\_work\\1\\s\\Source\\Modules\\Apps\\MiddleTier.Apps\\Providers\\AppsProviderTenant.cs:line 1733'Failed to execute settings store request: https://emea.settings.teams.internal.office.com/v1.0/settings/teams/apps/beefbeef-beef-beef-beef-beefbeefbeef/definitionv2, StatusCode: 400, ReasonPhrase: Schema validation errors, X-MSEdge-Ref: beefbeef-beef-beef-beef-beefbeefbeef", "innerError": { "code": "BadRequest", "message": "Update TenantAppDefinition failed, UserId: 'beefbeef-beef-beef-beef-beefbeefbeef', TenantId: 'beefbeef-beef-beef-beef-beefbeefbeef', Exception: 'Microsoft.SkypeSpaces.MiddleTier.Common.ServiceException: Failed to execute settings store request: https://emea.settings.teams.internal.office.com/v1.0/settings/teams/apps/beefbeef-beef-beef-beef-beefbeefbeef/definitionv2, StatusCode: 400, ReasonPhrase: Schema validation errors, X-MSEdge-Ref: beefbeef-beef-beef-beef-beefbeefbeef\r\n at Microsoft.SkypeSpaces.MiddleTier.BackendServices.SettingsStore.SettingsStore.ExecuteRequestAsync(HttpRequestMessage requestMessage, String requestName, String entityType, String facet, Boolean throwOn404) in C:\\a\\_work\\1\\s\\Source\\BackendServices\\BackendServices\\SettingsStore\\SettingsStore.cs:line 339\r\n at Microsoft.SkypeSpaces.MiddleTier.BackendServices.SettingsStore.SettingsStore.PutSettingAsync(String entityType, String entityId, String facet, String value, String ifMatch, String tenantIdForRegionLookup) in C:\\a\\_work\\1\\s\\Source\\BackendServices\\BackendServices\\SettingsStore\\SettingsStore.cs:line 146\r\n at Microsoft.SkypeSpaces.MiddleTier.BackendServices.SettingsStore.SettingsStore.PutSettingAsync(String entityType, String entityId, String facet, String value, String ifMatch) in C:\\a\\_work\\1\\s\\Source\\BackendServices\\BackendServices\\SettingsStore\\SettingsStore.cs:line 118\r\n at Microsoft.SkypeSpaces.MiddleTier.BackendServices.SettingsStore.SettingsStore.PutSettingAsync(String entityType, String entityId, String facet, String value) in C:\\a\\_work\\1\\s\\Source\\BackendServices\\BackendServices\\SettingsStore\\SettingsStore.cs:line 100\r\n at Microsoft.SkypeSpaces.MiddleTier.Provider.SettingsStore.RegionalSettingsStoreProvider.SetAppDefinitionAsync(String appId, AppDefinitionItem appDefinition) in C:\\a\\_work\\1\\s\\Source\\Provider\\Provider\\SettingsStore\\RegionalSettingsStoreProvider.cs:line 1910\r\n at Microsoft.Teams.MiddleTier.Apps.AppDefinitionsStore.Commands.CustomAppDefinitionWriter.<>c__DisplayClass10_0.<<UpdateAsync>b__0>d.MoveNext() in C:\\a\\_work\\1\\s\\Source\\Modules\\Apps\\MiddleTier.Apps\\AppDefinitionsStore\\Commands\\CustomAppDefinitionWriter.cs:line 103\r\n--- End of stack trace from previous location ---\r\n at Microsoft.SkypeSpaces.MiddleTier.Common.InstrumentedAsyncFunc`1.ExecuteAsync()\r\n at Microsoft.Teams.MiddleTier.Apps.AppDefinitionsStore.Commands.CustomAppDefinitionWriter.UpdateAsync(CustomAppDefinitionWriteContext context) in C:\\a\\_work\\1\\s\\Source\\Modules\\Apps\\MiddleTier.Apps\\AppDefinitionsStore\\Commands\\CustomAppDefinitionWriter.cs:line 113\r\n at Microsoft.Teams.MiddleTier.Apps.AppDefinitionsStore.Commands.CustomTenantAppDefinitionWriter.UpdateAsync(CustomAppDefinitionWriteContext context) in C:\\a\\_work\\1\\s\\Source\\Modules\\Apps\\MiddleTier.Apps\\AppDefinitionsStore\\Commands\\CustomTenantAppDefinitionWriter.cs:line 56\r\n at Microsoft.Teams.MiddleTier.Apps.Providers.AppsProviderTenant.UpdateTenantAppDefinitionAsync(AppDefinitionItem appDefinitionItem, ZipArchive appPackage) in C:\\a\\_work\\1\\s\\Source\\Modules\\Apps\\MiddleTier.Apps\\Providers\\AppsProviderTenant.cs:line 1733'Failed to execute settings store request: https://emea.settings.teams.internal.office.com/v1.0/settings/teams/apps/beefbeef-beef-beef-beef-beefbeefbeef/definitionv2, StatusCode: 400, ReasonPhrase: Schema validation errors, X-MSEdge-Ref: beefbeef-beef-beef-beef-beefbeefbeef", "details": [], "date": "2025-02-07T13:18:12", "request-id": "beefbeef-beef-beef-beef-beefbeefbeef", "client-request-id": "beefbeef-beef-beef-beef-beefbeefbeef" } } } This is our manifest (also with sensitive info being removed): { "$schema": "https://developer.microsoft.com/json-schemas/teams/v1.17/MicrosoftTeams.schema.json", "id": "beefbeef-beef-beef-beef-beefbeefbeef", "manifestVersion": "1.17", "version": "1.0.6", "name": { "short": "Outlook Addin name (dev)", "full": "Outlook Addin name" }, "description": { "short": "Outlook Addin name (dev)", "full": "Outlook Addin name" }, "developer": { "name": "OurCompany", "websiteUrl": "https://www.OurCompany.de", "privacyUrl": "https://www.OurCompany.de/privacy", "termsOfUseUrl": "https://www.OurCompany.de/servicesagreement" }, "icons": { "outline": "assets/logoOutlined.png", "color": "assets/logo.png" }, "accentColor": "#230201", "localizationInfo": { "defaultLanguageTag": "en-us", "additionalLanguages": [] }, "webApplicationInfo": { "id": "beefbeef-beef-beef-beef-beefbeefbeef", "resource": "api://CENSORED/beefbeef-beef-beef-beef-beefbeefbeef" }, "authorization": { "permissions": { "resourceSpecific": [ { "name": "MailboxItem.Read.User", "type": "Delegated" }, { "name": "Group.Read.All", "type": "Delegated" }, { "name": "Channel.ReadBasic.All", "type": "Delegated" }, { "name": "Sites.ReadWrite.All", "type": "Delegated" }, { "name": "Tasks.ReadWrite.All", "type": "Delegated" }, { "name": "Tasks.ReadWrite.Shared", "type": "Delegated" }, { "name": "Group-Conversation.ReadWrite.All", "type": "Delegated" } ] } }, "validDomains": ["OurCompany.de"], "extensions": [ { "requirements": { "scopes": ["mail"], "capabilities": [ { "name": "Mailbox", "minVersion": "1.3" } ] }, "runtimes": [ { "requirements": { "capabilities": [ { "name": "Mailbox", "minVersion": "1.3" } ] }, "id": "TaskPaneRuntime", "type": "general", "code": { "page": "https://censored.web.core.windows.net/taskpane.html" }, "lifetime": "short", "actions": [ { "id": "TaskPaneRuntimeShow", "type": "openPage", "pinnable": false, "view": "dashboard" } ] } ], "ribbons": [ { "contexts": ["mailRead"], "tabs": [ { "builtInTabId": "TabDefault", "groups": [ { "id": "msgReadGroup", "label": "Outlook Addin name", "icons": [ { "size": 16, "url": "https://censored.web.core.windows.net/assets/icon-16.png" }, { "size": 32, "url": "https://censored.web.core.windows.net/assets/icon-32.png" }, { "size": 80, "url": "https://censored.web.core.windows.net/assets/icon-80.png" } ], "controls": [ { "id": "msgReadOpenPaneButton", "type": "button", "label": "Outlook Addin name (dev)", "icons": [ { "size": 16, "url": "https://censored.web.core.windows.net/assets/icon-16.png" }, { "size": 32, "url": "https://censored.web.core.windows.net/assets/icon-32.png" }, { "size": 80, "url": "https://censored.web.core.windows.net/assets/icon-80.png" } ], "supertip": { "title": "Show Outlook Addin name", "description": "Opens a pane displaying Outlook Addin name." }, "actionId": "TaskPaneRuntimeShow" } ] } ] } ] } ] } ] } Is there anything we can do to further investigate the issue?203Views0likes9CommentsTeams revert to regular version on start-up
Hi! I have enabled the "Public preview" option and LOVE the combined chat/channel feature! Anyways, once my computer has been switched off and I turn it on the public preview is "reverted", but if I restart Teams, it is available again - is that a known issue?271Views2likes4CommentsTownhall meetings unable to disable attendee response
Hi, Is there a way to disable the email notification response for when attendees accept/decline the townhall meeting? I know I can disable the email entirely but this option prevents me from adding a distribution list or attendees directly into the townhall meeting setup in teams. Is adding a link to the townhall meeting and putting it in a seperate outlook calendar meeting the only option to not get the response from the meetings? Why is this not disabled by default? Townhall meetings are meant for large numbers of attendees. Nobody wants 800+ notification emails in their inbox. Please let me know if there is another way to do this.5Views0likes0CommentsTeams Town Hall - preventing meeting responses when publishing the event
When publishing Town Hall events, is there some magical switch that needs to be thrown to prevent all of the meeting replies from being sent back to the publisher? Not finding much on this anywhere. I had a person publish an event to 1500 people (via distribution list) to ensure the event was on calendars, and received hundreds of responses. It seems like that would/should default to no responses, but those features are unavailable in the Teams calendar (only in Outlook). Suggestions?760Views2likes2CommentsDefault audio devices in teams
Hi All, I use a Lenovo X1 carbon 6th Generation laptop along with a Thunderbolt Docking station. (Windows 10 operating system) I use a usb headset for teams/ meetings and calls. When I unplug my headset, Teams defaults to my docking station. When I plug it back in, my docking station remains as default without automatically placing my headset back as default. (My headset is defaulted for all sound devices) My headset will appear in device options in Teams and I have to re-select it there in order to use it in -teams again. I've found that even after unplugging my docking station and only having my PC speakers and internal microphone as options, Teams will not automatically default back to my headset. It will remain defaulted to my PC speakers and internal microphone. Teams only defaults back if every other sound option is disabled from the sound control panel. However, other meeting software like Zoom and Cisco Webex automatically default to my headset (or whatever new sound device is plugged in) each time without me having to disable other sound devices or re-select it from the Zoom/Webex devices menu. I and many other users at my company have noticed this behavior. Does anyone have any hints or clues to help us out? Any help will be greatly appreciated. Thank you!68KViews14likes17CommentsPublic preview checkbox keeps unchecking
Hi 🙂 When I tick the 'Public preview' box within settings, it is not clear if this instantly changes to the preview version or if it needs a restart. In Classic Teams, enabling public preview used to relaunch the app. In addition, the checkbox also regularly shows as unticked. I suspect this is happening after Teams updates (which it does a few times a day sometimes). Does anyone else notice this? I would like to stay in preview mode the majority of the time, but at the least until I choose to turn it off. With this current way of working I am often taken out of it without being notified. Thanks, Ian1.4KViews6likes12CommentsGreen Blocky Glitch on Shared Screen in New Teams Meeting
I have a user on New Teams that repeatedly has trouble with screens being shared in meetings by other people showing up as a Green Blocky mess on her end. So far we have cleared cache, uninstalled and reinstalled New Teams, updated graphics drivers, tested her internet connection (measured at 300Mbps down by 35Mbps Up and she is the only user on it) performed normal system maintenance (SFC, D.I.S.M, CHKDSK), and restarts galore. No luck. Any suggestions would be greatly appreciated.5.5KViews6likes41CommentsTeams Meeting Share Button
I can't say how many times users that are on a Teams meeting have accidentally clicked on the "Leave" button when they meant to click the "Share" button simply because of the close proximity to each other. Can anything be done to put some space between the two buttons to help prevent this from happening?17Views0likes2Comments"Microsoft Teams" Is Accessing Your Screen notification
Hi, after the latest Mac Update (MacOS Sequoia version 15.2) I am now perpetually getting reminders that Teams is accessing my screen and audio when I am deliberately sharing my screen. I can't find a way to get rid of it. This happens multiple times throughout a meeting when I am sharing my screen. Any suggestions?3.1KViews8likes12CommentsTeams Presence Issue
For our Exchange On-prem Users we are seeing the below. We have a full hybrid exchange server setup. This used to work fine. Exchange 2016 CU23 build 15.1.2507.39. Only recent change was updating the Exchange server. Anyone experienced this issue? For some users (doesn’t seem to be affecting all users), their Outlook Out of Office status is not showing in their Teams status/Presence. Even after a few days. For all users who I have tested with if they have a meeting in their diary and the free/busy information of the meeting is set to “Show as Busy” this is not updating their Teams Presence to Busy/In a Meeting. In the Teams Calendar Connectivity Tester Testing if the specified user mailbox REST API endpoint is marked as discoverable by the Teams middle-tier service. The user mailbox REST API endpoint is marked as undiscoverable by the Teams middle-tier service. I can see in the rest api logs DispatchException=Microsoft.Exchange.Services.OData.ODataResponseException: The value 'serveraddress/api/v2.0/me/MailboxSettings/automaticRepliesSetting' of parameter 'Resource' is not supported. at Microsoft.Exchange.Services.OData.Model.SubscriptionFactory.GetBrokerSubscription(INotifiableResource notifiableResource Subscription template Boolean requiresBrokerProxy) at Microsoft.Exchange.Services.OData.Model.SubscriptionProvider.Create(Subscription template) at Microsoft.Exchange.Services.OData.Model.CreateSubscriptionCommand.InternalExecute() at Microsoft.Exchange.Services.OData.ODataCommand`2.<Execute>b__9_0() at Microsoft.Exchange.Diagnostics.RequestDetailsLoggerBase`1.TrackLatency[TResult](Enum latencyMetadata Func`1 method) at Microsoft.Exchange.Services.OData.Web.RequestBroker.<>c__DisplayClass2_0.<Execute>b__0() at Microsoft.Exchange.Services.Diagnostics.ServicesPerformanceTracker.RunOperationWithTrackingADAndRpcPerformance(Action method Enum adCount Enum adLatency Enum rpcCount Enum rpcLatency) at Microsoft.Exchange.Services.OData.Web.RequestBroker.Execute(ODataRequest request) at Microsoft.Exchange.Services.OData.Web.RequestBroker.Dispatch(HttpContextBase httpContext AsyncCallback asyncCallback CheckpointTracker checkpointTracker ServiceModel serviceModel IComponentConfiguration`1 configuration);114Views0likes1Comment
Recent Blogs
- Do you have questions about deploying and using Teams for your frontline workers? Are you looking for ways to simplify everyday management and boost productivity? We’re the engineering team behind Mi...Mar 07, 2025135Views1like0Comments
- The latest Microsoft Teams and Microsoft 365 expert community briefings, Podcasts and upcoming community events. Expert Briefings Dynamics 365 Contact Center Explained: Features, Licensing an...Mar 04, 202563Views0likes0Comments