Month: October 2024
Training Domain
Hello,
Previously, to run training sessions on M365, I would set up a trial tenant to use so as not to make our actual tenant messy. Now you can’t seem to set up the free trial without putting payment details in.
I have been told that you can set up another domain to create a test environment. We already have more than one domain. Are there any instructions on how to create another 365 environment for that domain please?
Thanks
Louisa
Hello, Previously, to run training sessions on M365, I would set up a trial tenant to use so as not to make our actual tenant messy. Now you can’t seem to set up the free trial without putting payment details in. I have been told that you can set up another domain to create a test environment. We already have more than one domain. Are there any instructions on how to create another 365 environment for that domain please?ThanksLouisa Read More
How to fix HTTP Error 500.37 – ASP.NET Core app failed to start within the startup time limit error
Introduction
ASP.NET Core applications hosted in IIS are designed to provide robust performance. However, sometimes issues arise that prevent apps from starting properly within the expected time. One common problem is the HTTP Error 500.37, which indicates that the application failed to start within the startup time limit. This article will walk you through what causes this error and how to resolve it.
Problem
HTTP Error 500.37 occurs when an ASP.NET Core application hosted in IIS does not start within the allocated startup time. The default time limit is 120 seconds. This may happen due to various reasons such limited resource (CPU and memory), long initialization tasks, or inadequate startup time configurations in IIS. The error message usually looks like this –
This issue can be particularly problematic for larger or resource-intensive applications, where a longer startup time might be required to complete initialization tasks.
Solution
The good news is that this issue is easily fixable by increasing the startup time limit for the application in the web.config file. Here’s a step-by-step guide to applying the fix:
Locate your application’s web.config file, which should be in the root directory of your ASP.NET Core application. And update the startupTimeLimit to a higher value then default 120 seconds in <aspNetCore> section.
<aspNetCore processPath=”dotnet” arguments=”.YourApp.dll” stdoutLogEnabled=”false” startupTimeLimit=”360″ />
In this example, the startupTimeLimit is set to 360 seconds (6 minutes). You can adjust this value based on the needs of your application. This configuration gives your application a longer window to initialize properly, preventing the 500.37 error from occurring.
Although, this fix will resolve the issue and allow the application to run smoothly, it’s important to review the Startup.cs or Program.cs files to identify if any modules or dependencies are taking longer than expected to initialize.
Conclusion
HTTP Error 500.37 indicate startup failure of your ASP.NET Core application in IIS that requires more time to initialize. By adjusting the startupTimeLimit in the web.config file, you can give your application the necessary time to start and avoid startup errors. This simple yet effective solution ensures your application runs smoothly, even under complex startup conditions.
Microsoft Tech Community – Latest Blogs –Read More
Sentinel query KQL with variables
Hello!
I need to use variables as parameters of functions in Sentinel Logs. I have:
let t = “Syslog”;
let name = “my-Sentinel”;
let id = “abc123”;
Well, if do this, it works fine:
table(“Syslog”)
table(t)
workspace(“my-Sentinel”).table(“Syslog”)
workspace(“my-Sentinel”).Syslog
But i need to work this:
worskpace(name).table(t)
or
let x=strcat(“workspace(‘”, name, “‘)”);
let y=strcat(“table(‘”, t, “‘)”);
x.y
In general seems that the function workspace() doesent work with a variable as parameter, but the function table() if alone it works:
workspace(“my-Sentinel”) -> YES
workspace(n) -> NO
table(“Syslog”) -> OK
table(t) -> OK
Any idea how to make it works? In particulary to do this: workspace(name).table(t)
Thanks!!!
Hello!I need to use variables as parameters of functions in Sentinel Logs. I have:let t = “Syslog”;let name = “my-Sentinel”;let id = “abc123”; Well, if do this, it works fine:table(“Syslog”)table(t)workspace(“my-Sentinel”).table(“Syslog”)workspace(“my-Sentinel”).SyslogBut i need to work this:worskpace(name).table(t)orlet x=strcat(“workspace(‘”, name, “‘)”);let y=strcat(“table(‘”, t, “‘)”);x.yIn general seems that the function workspace() doesent work with a variable as parameter, but the function table() if alone it works:workspace(“my-Sentinel”) -> YESworkspace(n) -> NOtable(“Syslog”) -> OKtable(t) -> OK Any idea how to make it works? In particulary to do this: workspace(name).table(t)Thanks!!! Read More
Issue with Taskbar Applications
Hello everyone,
I’m experiencing an issue where some apps in the Taskbar are not displaying their icons, although I can still access them. This is quite frustrating. I have attached a screenshot for reference.
I would appreciate it if someone could assist me in resolving this issue.
Thank you in advance.
Hello everyone, I’m experiencing an issue where some apps in the Taskbar are not displaying their icons, although I can still access them. This is quite frustrating. I have attached a screenshot for reference. I would appreciate it if someone could assist me in resolving this issue. Thank you in advance. Read More
IF AND Query
Hi, Sorry if this is basic, but I’m still learning.
This works – MIN(IF(Data!G:G=Answer!A2,(TIMEVALUE(Data!M:M))))
GG and A2 are names
This works – MIN(IF(Data!L:L=Answer!H1,(TIMEVALUE(Data!M:M)))
LL and H1 are dates
But when I combine them as follows it doesn’t – MIN(IF(AND(Data!L:L=Answer!H1,Data!G:G=Answer!A2),(TIMEVALUE(Data!M:M))))
Thoughts?
Hi, Sorry if this is basic, but I’m still learning.This works – MIN(IF(Data!G:G=Answer!A2,(TIMEVALUE(Data!M:M))))GG and A2 are names This works – MIN(IF(Data!L:L=Answer!H1,(TIMEVALUE(Data!M:M)))LL and H1 are dates But when I combine them as follows it doesn’t – MIN(IF(AND(Data!L:L=Answer!H1,Data!G:G=Answer!A2),(TIMEVALUE(Data!M:M)))) Thoughts? Read More
Improved Profile Design
My primary user account is currently experiencing difficulties running any of my Office 2016 applications (such as Excel, Outlook, Word, PowerPoint, OneNote, Publisher, Visio, etc.) without having to use the “Run as Administrator” option. This issue arose following a Patch Tuesday update earlier this year, and despite multiple attempts to resolve it through various scans, fixes, and reinstallation processes, the problem persists. It is worth noting that this issue is specific to Office 2016 applications and does not affect any other software on my system.
Given the situation, I am considering several possible options to address this issue effectively:
1. Transfer the contents of my main user account to a different profile to see if the problem persists.
2. Perform an in-place reinstallation of Office 2016 to potentially address any corrupt components causing the issue.
3. Explore alternative solutions to identify and resolve the underlying cause of this issue more directly.
Ideally, I would prefer to identify and rectify the root cause of this issue, driven by a motivation to overcome challenges rather than simply accepting defeat.
My primary user account is currently experiencing difficulties running any of my Office 2016 applications (such as Excel, Outlook, Word, PowerPoint, OneNote, Publisher, Visio, etc.) without having to use the “Run as Administrator” option. This issue arose following a Patch Tuesday update earlier this year, and despite multiple attempts to resolve it through various scans, fixes, and reinstallation processes, the problem persists. It is worth noting that this issue is specific to Office 2016 applications and does not affect any other software on my system. Given the situation, I am considering several possible options to address this issue effectively: 1. Transfer the contents of my main user account to a different profile to see if the problem persists.2. Perform an in-place reinstallation of Office 2016 to potentially address any corrupt components causing the issue.3. Explore alternative solutions to identify and resolve the underlying cause of this issue more directly. Ideally, I would prefer to identify and rectify the root cause of this issue, driven by a motivation to overcome challenges rather than simply accepting defeat. Read More
“Protected Documents”
A few days back, my computer had trouble booting up and entered repair mode. I selected the restore option and successfully booted up, although there was a message indicating that Windows couldn’t restore to the point, and no changes were made. Since the computer was working fine, I continued using it without much concern.
The following day, the computer once again entered repair mode. However, this time, to my surprise, all restore points had disappeared, leaving me with no options. I attempted the repair option, but after several hours, the issue remained unresolved. Upon restarting, the monitor remained black after the BIOS screen, showing no signs of progress.
In need of some important files, I decided to reinstall Windows, replacing the drive and relocating the old one to a different M.2 slot below. With Windows 11 installed on the new drive, I intended to retrieve the necessary files from the old drive. Having performed this process multiple times before without any issues, I was not expecting any complications.
After setting up the new Windows, the old M.2 drive appeared as the D drive, and all files were accessible. However, upon attempting to copy the needed files to my desktop, I encountered a message indicating that the files were locked and couldn’t be copied, cut, or run. I had never locked any files before and was unsure how to unlock them.
I am looking for assistance in unlocking these important files, which represent years of work. Thank you for your help.
A few days back, my computer had trouble booting up and entered repair mode. I selected the restore option and successfully booted up, although there was a message indicating that Windows couldn’t restore to the point, and no changes were made. Since the computer was working fine, I continued using it without much concern. The following day, the computer once again entered repair mode. However, this time, to my surprise, all restore points had disappeared, leaving me with no options. I attempted the repair option, but after several hours, the issue remained unresolved. Upon restarting, the monitor remained black after the BIOS screen, showing no signs of progress. In need of some important files, I decided to reinstall Windows, replacing the drive and relocating the old one to a different M.2 slot below. With Windows 11 installed on the new drive, I intended to retrieve the necessary files from the old drive. Having performed this process multiple times before without any issues, I was not expecting any complications. After setting up the new Windows, the old M.2 drive appeared as the D drive, and all files were accessible. However, upon attempting to copy the needed files to my desktop, I encountered a message indicating that the files were locked and couldn’t be copied, cut, or run. I had never locked any files before and was unsure how to unlock them. I am looking for assistance in unlocking these important files, which represent years of work. Thank you for your help. Read More
Looking for an Online Computer Support Service for My Wife
I have a good understanding of operating systems, specifically Windows, whereas my wife is less familiar with it. Whenever she encounters any issues, I play the role of her knowledgeable companion. Mockingly, I tell her that she will be in trouble when I’m not around, and she acknowledges this. Hence, I am currently searching for a 24/7 service that my wife can rely on to address her computer problems remotely. I have been looking into HP’s “Smart Friend” program but there are mixed opinions about their customer service quality. Does anyone have any insights on this?
I have a good understanding of operating systems, specifically Windows, whereas my wife is less familiar with it. Whenever she encounters any issues, I play the role of her knowledgeable companion. Mockingly, I tell her that she will be in trouble when I’m not around, and she acknowledges this. Hence, I am currently searching for a 24/7 service that my wife can rely on to address her computer problems remotely. I have been looking into HP’s “Smart Friend” program but there are mixed opinions about their customer service quality. Does anyone have any insights on this? Read More
MS 365 Defender – What permissions are needed to move and delete emails in Explorer?
I need a tech with limited permissions to be able to Remediate malicious email delivered in Office 365
These are the options I have in Admin.
I tried a bunch of recommended actions, yet I don’t seem to have the correct Admin portals as shown here.
For example, I don’t have MS 365 Defender Permissions Group shown in the video:
I need a tech with limited permissions to be able to Remediate malicious email delivered in Office 365These are the options I have in Admin.I tried a bunch of recommended actions, yet I don’t seem to have the correct Admin portals as shown here.For example, I don’t have MS 365 Defender Permissions Group shown in the video: Read More
Migrating Azure Function from .NET 6 in-process to .NET 8 in-process Issues
I’m posting this to help anyone who will face this issue.
I’m migrating from .net6 in-process to .net8 in-process and I get this error whenever I try to run it
azure function app Could not load file or assembly ‘System.Data.Common, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a’. The system cannot find the file specified.
the fix I found is to add to app settings this line :
“FUNCTIONS_INPROC_NET8_ENABLED” : “1”
I’m posting this to help anyone who will face this issue.I’m migrating from .net6 in-process to .net8 in-process and I get this error whenever I try to run it azure function app Could not load file or assembly ‘System.Data.Common, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a’. The system cannot find the file specified. the fix I found is to add to app settings this line :”FUNCTIONS_INPROC_NET8_ENABLED” : “1” Read More
腾龙娱乐怎么开户
腾龙集团公司开户注册溦 13542035注册官网www.tl99825.com 通常需要遵循以下一般步骤:准备相关资料:可能包括个人或企业身份证明、联系方式、地址证明等。联系盛世集团:通过其官方网站、客服渠道等,了解具体开户注册流程和所需资料要求。填写表格:按照要求如填写相关信息。提交资料:将准备好的资料提交给盛世集团,可能通过线上提交或线下提交的方式。等待审核:公司同意提交的资料进行审核。完成审核:审核通过后,即可成功开户注册。需要注意的是,具体步骤和要求可能因盛世集团的规定而有所不同。建议您与该公司进行详细沟通,以确保顺利完成开户注册。
腾龙集团公司开户注册溦 13542035注册官网www.tl99825.com 通常需要遵循以下一般步骤:准备相关资料:可能包括个人或企业身份证明、联系方式、地址证明等。联系盛世集团:通过其官方网站、客服渠道等,了解具体开户注册流程和所需资料要求。填写表格:按照要求如填写相关信息。提交资料:将准备好的资料提交给盛世集团,可能通过线上提交或线下提交的方式。等待审核:公司同意提交的资料进行审核。完成审核:审核通过后,即可成功开户注册。需要注意的是,具体步骤和要求可能因盛世集团的规定而有所不同。建议您与该公司进行详细沟通,以确保顺利完成开户注册。 Read More
Adding a “Category” to a Clustered Column Chart – help!
How can I add a Category to my Clustered Column Chart in Word? I want there to be five, but I just can’t seem to figure it out. Thanks! 🙂
How can I add a Category to my Clustered Column Chart in Word? I want there to be five, but I just can’t seem to figure it out. Thanks! 🙂 Read More
腾龙公司客服微信-13542035
腾龙集团公司开户注册网址www.tl99825.com 溦13542035通常需要遵循以下一般步骤:准备相关资料:可能包括个人或企业身份证明、联系方式、地址证明等。联系盛世集团:通过其官方网站、客服渠道等,了解具体开户注册流程和所需资料要求。填写表格:按照要求如填写相关信息。提交资料:将准备好的资料提交给盛世集团,可能通过线上提交或线下提交的方式。等待审核:公司同意提交的资料进行审核。完成审核:审核通过后,即可成功开户注册。需要注意的是,具体步骤和要求可能因盛世集团的规定而有所不同。建议您与该公司进行详细沟通,以确保顺利完成开户注册。
腾龙集团公司开户注册网址www.tl99825.com 溦13542035通常需要遵循以下一般步骤:准备相关资料:可能包括个人或企业身份证明、联系方式、地址证明等。联系盛世集团:通过其官方网站、客服渠道等,了解具体开户注册流程和所需资料要求。填写表格:按照要求如填写相关信息。提交资料:将准备好的资料提交给盛世集团,可能通过线上提交或线下提交的方式。等待审核:公司同意提交的资料进行审核。完成审核:审核通过后,即可成功开户注册。需要注意的是,具体步骤和要求可能因盛世集团的规定而有所不同。建议您与该公司进行详细沟通,以确保顺利完成开户注册。 Read More
MVP’s Favorite Content: Power Platform, Intune, Azure
In this blog series dedicated to Microsoft’s technical articles, we’ll highlight our MVPs’ favorite article along with their personal insights.
Eduardo Amaral, Business Applications MVP, Brazil
Introduction to Microsoft Power Platform security and governance – Training | Microsoft Learn
“Governance is key to a successful implementation of the Power Platform.”
Somesh Pathak, Security MVP, Netherlands
Configure Platform SSO for macOS devices | Microsoft Learn
“The Platform SSO feature for macOS in Microsoft Intune enhances the user experience and security for organizations using Entra ID. By enabling seamless Single Sign-On (SSO) across applications, users can access multiple services without repeatedly entering their credentials. This not only simplifies the login process but also reduces the potential for security breaches caused by password fatigue. Implementing Platform SSO improves productivity and security, making it an essential feature for macOS devices in a managed enterprise environment.”
*Relevant Blog: Platform SSO for macOS: A Deep Dive into Configuration & Troubleshooting – Intune – In Real Life (intuneirl.com)
Rajaniesh Kaushikk, Microsoft Azure MVP, United States
Plan for inbound and outbound internet connectivity – Cloud Adoption Framework | Microsoft Learn
“The considerations and recommendations for inbound and outbound connectivity between Azure and the public internet is an important concept for designing your Azure Infrastructure. There are certain design considerations which need to be taken care. This Article discusses the same.”
*Relevant Blog: Inbound vs outbound traffic in Azure. What you need to know? – Beyond the Horizon… (rajanieshkaushikk.com)
Luke Murray, Microsoft Azure MVP, New Zealand
Introduction to the Containers secure supply chain framework | Microsoft Learn
“‘Microsoft’s Containers Secure Supply Chain (CSSC) framework is a seamless, agile ecosystem of tools and processes built to integrate and execute security controls throughout the lifecycle of containers.’ Containers can help deliver your applications and services faster and more consistently at scale than traditional click-click, next deployments, but when you are consuming containers from public endpoints or working with third-party libraries, there is a certain amount of trust involved, in some of the dependencies that your containers relies on, this is where the Secure Supply Chain framework can assist in, from acquiring, cataloging through to running your containers, there’s tools and processes to help every step of the way!”
*Relevant Activity: Container Patching with Azure DevOps, Trivy and Copacetic | luke.geek.nz
Microsoft Tech Community – Latest Blogs –Read More
Document library web part looks wrong on coworker’s side
Hi all,
I have a document library web part on a page that looks just fine on my end (Edge browser).
However, a coworker showed me that it looks wrong in their browser, and several others have confirmed (I believe both Edge and Chrome browsers).
Please see screenshots below for context – is this a known issue?
Screenshots below:
Correct view I see on my sideMy view, edit mode, showing document library web part inside a 2 column sectionCoworker’s view, web part looks wrong (not full width?)
Thank you!
Hi all, I have a document library web part on a page that looks just fine on my end (Edge browser). However, a coworker showed me that it looks wrong in their browser, and several others have confirmed (I believe both Edge and Chrome browsers). Please see screenshots below for context – is this a known issue? Screenshots below:Correct view I see on my sideMy view, edit mode, showing document library web part inside a 2 column sectionCoworker’s view, web part looks wrong (not full width?)Thank you! Read More
Vetting Status is Rejected. Fix now option does not work
Hi, the vetting status is always “rejected”. Even when I select “fix now”, it gets me back to Account settings legal info with vetting “Pending status”, which then falls back to “rejected” a few minutes later. When selecting Fix Now, there are no options appearing on the web page unlike what the solution in Learn shows (https://learn.microsoft.com/en-us/partner-center/enroll/verification-responses#appealing-a-rejected-application)
I tried Chrome or Edge browsers. This is a urgent blocker for our company.
What can I do? Please help thank you
Hi, the vetting status is always “rejected”. Even when I select “fix now”, it gets me back to Account settings legal info with vetting “Pending status”, which then falls back to “rejected” a few minutes later. When selecting Fix Now, there are no options appearing on the web page unlike what the solution in Learn shows (https://learn.microsoft.com/en-us/partner-center/enroll/verification-responses#appealing-a-rejected-application)I tried Chrome or Edge browsers. This is a urgent blocker for our company. What can I do? Please help thank you Read More
Unable to add a Power App as Teams tab (Critical!)
Hello community, Just a couple of days ago, I started facing this issue in my tenant when trying to add a Power App as a Teams channel tab in Teams. “This app does not exist, or you do not have access to it. Please contact an administrator.” I am the global admin so it’s not a permission issue. This happens across all teams, channels, users and apps in our tenant. We have seen the same thing happening in other tenants too. These are Power Apps created from the maker portal () and added to Teams. No issues in the past, this started happening all of a sudden. Has anybody else faced the same issue? Read More
Surface Dock 1 firmware update problems
Hi!
I own a Surface Pro 6 that has been updated to the latest version of Windows 11 24H2 and I have recently come into possession of a Surface Dock 1.
Follow the page at this address:
https://learn.microsoft.com/it-it/surface/surface-dock-firmware-update
I tried to update the firmware installing the file:
Surface_Dock_FwUpdate_1.53.139_Win10_17763_20.075.41193_0_AMD64.msi
but the update apparently fails.
In fact running the command:
Reg query “HKLMSOFTWAREMicrosoftWindows NTCurrentVersionWUDFServicesSurfaceDockFwUpdateParameters”
I get the following result:
HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionWUDFServicesSurfaceDockFwUpdateParameters
Component10FirmwareUpdateStatus REG_DWORD 0x5
Component10CurrentFwVersion REG_DWORD 0x4ac3970
Component20FirmwareUpdateStatus REG_DWORD 0x5
Component20CurrentFwVersion REG_DWORD 0x49e3d70
Component10OfferFwVersion REG_DWORD 0x4ac3970
Component20OfferFwVersion REG_DWORD 0x4a1d570
Component10FirmwareUpdateStatusRejectReason REG_DWORD 0x0
Component20FirmwareUpdateStatusRejectReason REG_DWORD 0x0
As can be seen, the value of Component10CurrentFwVersion is correct, while that of Component20CurrentFwVersion (which should be 0x4a1d570) is different.
In the Event Viewer I read the following entries:
Informazioni 11/10/2024 16:00:29 SurfaceDockFwUpdate 2011 Nessuna
Informazioni 11/10/2024 16:00:29 SurfaceDockFwUpdate 2012 Nessuna
Informazioni 11/10/2024 16:00:29 SurfaceDockFwUpdate 2012 Nessuna
Informazioni 11/10/2024 16:00:29 SurfaceDockFwUpdate 2008 Nessuna
Informazioni 11/10/2024 16:00:29 SurfaceDockFwUpdate 2007 Nessuna
Informazioni 11/10/2024 16:00:29 SurfaceDockFwUpdate 2004 Nessuna
Informazioni 11/10/2024 16:00:29 SurfaceDockFwUpdate 2004 Nessuna
Informazioni 11/10/2024 16:00:29 SurfaceDockFwUpdate 2001 Nessuna
The last entry contains the following detail:
Dock firmware end of telemetry.
SurfaceDockFwUpdate END dock telemetry hr=0. DriverTelemetry EventCode = 2011.
I’ve already tried all the things mentioned on the page linked at the beginning, but the update never seems to succeed.
Does anyone know how to do it?
Hi!I own a Surface Pro 6 that has been updated to the latest version of Windows 11 24H2 and I have recently come into possession of a Surface Dock 1.Follow the page at this address:https://learn.microsoft.com/it-it/surface/surface-dock-firmware-updateI tried to update the firmware installing the file:Surface_Dock_FwUpdate_1.53.139_Win10_17763_20.075.41193_0_AMD64.msibut the update apparently fails.In fact running the command: Reg query “HKLMSOFTWAREMicrosoftWindows NTCurrentVersionWUDFServicesSurfaceDockFwUpdateParameters” I get the following result: HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionWUDFServicesSurfaceDockFwUpdateParameters
Component10FirmwareUpdateStatus REG_DWORD 0x5
Component10CurrentFwVersion REG_DWORD 0x4ac3970
Component20FirmwareUpdateStatus REG_DWORD 0x5
Component20CurrentFwVersion REG_DWORD 0x49e3d70
Component10OfferFwVersion REG_DWORD 0x4ac3970
Component20OfferFwVersion REG_DWORD 0x4a1d570
Component10FirmwareUpdateStatusRejectReason REG_DWORD 0x0
Component20FirmwareUpdateStatusRejectReason REG_DWORD 0x0 As can be seen, the value of Component10CurrentFwVersion is correct, while that of Component20CurrentFwVersion (which should be 0x4a1d570) is different.In the Event Viewer I read the following entries: Informazioni 11/10/2024 16:00:29 SurfaceDockFwUpdate 2011 Nessuna
Informazioni 11/10/2024 16:00:29 SurfaceDockFwUpdate 2012 Nessuna
Informazioni 11/10/2024 16:00:29 SurfaceDockFwUpdate 2012 Nessuna
Informazioni 11/10/2024 16:00:29 SurfaceDockFwUpdate 2008 Nessuna
Informazioni 11/10/2024 16:00:29 SurfaceDockFwUpdate 2007 Nessuna
Informazioni 11/10/2024 16:00:29 SurfaceDockFwUpdate 2004 Nessuna
Informazioni 11/10/2024 16:00:29 SurfaceDockFwUpdate 2004 Nessuna
Informazioni 11/10/2024 16:00:29 SurfaceDockFwUpdate 2001 Nessuna The last entry contains the following detail: Dock firmware end of telemetry.
SurfaceDockFwUpdate END dock telemetry hr=0. DriverTelemetry EventCode = 2011. I’ve already tried all the things mentioned on the page linked at the beginning, but the update never seems to succeed.Does anyone know how to do it? Read More
Viva Amplify Open Rates have dropped significantly – did something change?
Hello,
In two different campaigns, for a total of 4 messages, starting 9/20 our open rates have dropped significantly for messages to the same audience. Previous open rates were around 50%, they are now showing 18% or less. Did something change with the way these are being reported or is something broken with the reports?
Hello,In two different campaigns, for a total of 4 messages, starting 9/20 our open rates have dropped significantly for messages to the same audience. Previous open rates were around 50%, they are now showing 18% or less. Did something change with the way these are being reported or is something broken with the reports? Read More
OAuth client for API-based message extension
Hello everyone, Is it possible to use OAuth client described here https://dev.teams.microsoft.com/oauth-configuration for API-based Teams message extension? Looks like there is no option for this in the App manifest.
Thanks!
Hello everyone, Is it possible to use OAuth client described here https://dev.teams.microsoft.com/oauth-configuration for API-based Teams message extension? Looks like there is no option for this in the App manifest. Thanks! Read More