Month: October 2024
Request Archivement codes for students
Hello,
we are starting as a new Training Service Partner. We need Microsoft to enable us the option to request the Achievements code from our profile.
We have followed the steps described in the guide found in the following link (several times) but we have not received a response.
https://partner.microsoft.com/en-us/marketing/learning-resources#/?search=achievement
We made the request two weeks ago. Is there something we are doing wrong?
We need to be able to request the codes for our students.
This is the option that we need:
Hello, we are starting as a new Training Service Partner. We need Microsoft to enable us the option to request the Achievements code from our profile.We have followed the steps described in the guide found in the following link (several times) but we have not received a response.https://partner.microsoft.com/en-us/marketing/learning-resources#/?search=achievementWe made the request two weeks ago. Is there something we are doing wrong?We need to be able to request the codes for our students. This is the option that we need: Read More
SharePoint Modern News Web Part Error – “Something went wrong”
After successfully running gulp serve and attempting to add my custom web part (specifically a news web part) to a modern SharePoint page, I encountered the following error:
Something went wrong
If the problem persists, contact the site administrator and give them the information in Technical Details.
Technical Details
ERROR:
[object Object]
This issue occurs when adding the web part to a SharePoint page, even though the build and serve commands (gulp serve) seem to work without any issues.
After successfully running gulp serve and attempting to add my custom web part (specifically a news web part) to a modern SharePoint page, I encountered the following error:Something went wrongIf the problem persists, contact the site administrator and give them the information in Technical Details.Technical DetailsERROR:[object Object]This issue occurs when adding the web part to a SharePoint page, even though the build and serve commands (gulp serve) seem to work without any issues. Read More
Sharepoint background image – not showing
I wanted to change the background of my Sharepoint page (I uploaded my own picture) and it to all the pages, but it only shows briefly when I click to another page and also when I click on settings pages.
So this is how it should look like, but it does not show any of my pages.
I wanted to change the background of my Sharepoint page (I uploaded my own picture) and it to all the pages, but it only shows briefly when I click to another page and also when I click on settings pages.So this is how it should look like, but it does not show any of my pages. Read More
How i modifed this for loop so it get the last value Kf_LMax of previous iteration not from the computed values before the loop?
function [Kf_LMax] = Kf_Cal(Kf_Max, RLC, TauKf_ON, TauKf_OFF, PhaseTimes, t)
%compute the maximum Kf_L based on RLC values
Kf_LMax_values = Kf_Max * (RLC ./ (1 + RLC));
% Determine which phase each time step falls into
num_phases = numel(RLC);
phase_idx = zeros(size(t));
for j = 1:num_phases
T_start = PhaseTimes(j);
if j < num_phases
T_end = PhaseTimes(j + 1);
else
T_end = inf;
end
phase_idx(t >= T_start & t < T_end) = j;
end
% Calculate Kf_L for each time step based on the phase
Kf_LMax = zeros(size(t));
for i = 1:length(t)
j = phase_idx(i);
if j == 1
Kf_LMax(i) = Kf_LMax_values(j);
else
prev_end = PhaseTimes(j – 1);
if RLC(j – 1) < RLC(j)
Kf_LMax(i) = Kf_LMax_values(j) – (Kf_LMax_values(j) – Kf_LMax_values(j – 1)) * exp(TauKf_ON * (t(i) – prev_end));
else
Kf_LMax(i) = Kf_LMax_values(j) + (Kf_LMax_values(j) – Kf_LMax_values(j – 1)) * exp(TauKf_OFF * (t(i) – prev_end));
end
end
end
end
How i modifed this for loop so it get the last value Kf_LMax of previous iteration not from the computed values in bold before the loop?function [Kf_LMax] = Kf_Cal(Kf_Max, RLC, TauKf_ON, TauKf_OFF, PhaseTimes, t)
%compute the maximum Kf_L based on RLC values
Kf_LMax_values = Kf_Max * (RLC ./ (1 + RLC));
% Determine which phase each time step falls into
num_phases = numel(RLC);
phase_idx = zeros(size(t));
for j = 1:num_phases
T_start = PhaseTimes(j);
if j < num_phases
T_end = PhaseTimes(j + 1);
else
T_end = inf;
end
phase_idx(t >= T_start & t < T_end) = j;
end
% Calculate Kf_L for each time step based on the phase
Kf_LMax = zeros(size(t));
for i = 1:length(t)
j = phase_idx(i);
if j == 1
Kf_LMax(i) = Kf_LMax_values(j);
else
prev_end = PhaseTimes(j – 1);
if RLC(j – 1) < RLC(j)
Kf_LMax(i) = Kf_LMax_values(j) – (Kf_LMax_values(j) – Kf_LMax_values(j – 1)) * exp(TauKf_ON * (t(i) – prev_end));
else
Kf_LMax(i) = Kf_LMax_values(j) + (Kf_LMax_values(j) – Kf_LMax_values(j – 1)) * exp(TauKf_OFF * (t(i) – prev_end));
end
end
end
end
How i modifed this for loop so it get the last value Kf_LMax of previous iteration not from the computed values in bold before the loop? function [Kf_LMax] = Kf_Cal(Kf_Max, RLC, TauKf_ON, TauKf_OFF, PhaseTimes, t)
%compute the maximum Kf_L based on RLC values
Kf_LMax_values = Kf_Max * (RLC ./ (1 + RLC));
% Determine which phase each time step falls into
num_phases = numel(RLC);
phase_idx = zeros(size(t));
for j = 1:num_phases
T_start = PhaseTimes(j);
if j < num_phases
T_end = PhaseTimes(j + 1);
else
T_end = inf;
end
phase_idx(t >= T_start & t < T_end) = j;
end
% Calculate Kf_L for each time step based on the phase
Kf_LMax = zeros(size(t));
for i = 1:length(t)
j = phase_idx(i);
if j == 1
Kf_LMax(i) = Kf_LMax_values(j);
else
prev_end = PhaseTimes(j – 1);
if RLC(j – 1) < RLC(j)
Kf_LMax(i) = Kf_LMax_values(j) – (Kf_LMax_values(j) – Kf_LMax_values(j – 1)) * exp(TauKf_ON * (t(i) – prev_end));
else
Kf_LMax(i) = Kf_LMax_values(j) + (Kf_LMax_values(j) – Kf_LMax_values(j – 1)) * exp(TauKf_OFF * (t(i) – prev_end));
end
end
end
end
How i modifed this for loop so it get the last value Kf_LMax of previous iteration not from the computed values in bold before the loop? matlab code MATLAB Answers — New Questions
Index exceeded ERROR when exporting the coverage report from the Test Manager
Hi everyone,
In have a Test Manager with a test file, a test suite and 2 test cases added.
At the test file level I have added 2 coverage filters. Filter 1 for test case 1 and filter 2 test case 2.
After running the tests I want to export the Coverage report. I am not able to do this because I get the following error:
MCDC coverage number shows that the filters were considered in the coverage analysis, but I can’t export the report.
Please support with this issue.
Thanks much in advance!
DianaHi everyone,
In have a Test Manager with a test file, a test suite and 2 test cases added.
At the test file level I have added 2 coverage filters. Filter 1 for test case 1 and filter 2 test case 2.
After running the tests I want to export the Coverage report. I am not able to do this because I get the following error:
MCDC coverage number shows that the filters were considered in the coverage analysis, but I can’t export the report.
Please support with this issue.
Thanks much in advance!
Diana Hi everyone,
In have a Test Manager with a test file, a test suite and 2 test cases added.
At the test file level I have added 2 coverage filters. Filter 1 for test case 1 and filter 2 test case 2.
After running the tests I want to export the Coverage report. I am not able to do this because I get the following error:
MCDC coverage number shows that the filters were considered in the coverage analysis, but I can’t export the report.
Please support with this issue.
Thanks much in advance!
Diana simulink test, simulink coverage, test manager, index exceed error MATLAB Answers — New Questions
Vertical search of multiple variables has to return a different value depending column data found
Hello,
I’m doing a search to find the % that belongs to a team ( fe Anderlecht) coupled at a matchday (fe 1)
(table 1 => looking to fill cell N/B marked in yellow)
The data comes out of sheet 2 but If the team is found in column “Thuisploeg” then the percentage out of column 3 DEF % Thuis should be returned. IF the team is found in column “Uitploeg” then the percentage out of column 4 Def % UIT should be returned.
Any experts that can help me?
Kind regards,
Jan
Hello,I’m doing a search to find the % that belongs to a team ( fe Anderlecht) coupled at a matchday (fe 1)(table 1 => looking to fill cell N/B marked in yellow) The data comes out of sheet 2 but If the team is found in column “Thuisploeg” then the percentage out of column 3 DEF % Thuis should be returned. IF the team is found in column “Uitploeg” then the percentage out of column 4 Def % UIT should be returned. Any experts that can help me?Kind regards,Jan Read More
using language and powerpoint
Hi everyone.
I’m trying to use copilot in powerpoint. I’m italian and I set up the english language. I gave to Copilot a word file in english, and i asked it to create a presentation in english. Unfortunately it prepare the presentation in italina, but i want it in english ! Anyone can help me ?
Hi everyone.I’m trying to use copilot in powerpoint. I’m italian and I set up the english language. I gave to Copilot a word file in english, and i asked it to create a presentation in english. Unfortunately it prepare the presentation in italina, but i want it in english ! Anyone can help me ? Read More
How to embed the new Microsoft Lists Form in SharePoint pages or Teams tab
Using the embed web part and adding an iFrame is possible to include the Microsoft Lists Form in a SharePoint page or as tab in Microsoft Teams.
This trick allows to use a page visible and already known to end users rather than sharing a link to open the form.
#MicrosoftLists #Lists #Forms #Microsoft365 #MPVbuzz
Using the embed web part and adding an iFrame is possible to include the Microsoft Lists Form in a SharePoint page or as tab in Microsoft Teams.
This trick allows to use a page visible and already known to end users rather than sharing a link to open the form.
#MicrosoftLists #Lists #Forms #Microsoft365 #MPVbuzz Read More
Syncing calendars across multiple shared booking pages
I have multiple shared booking pages where each appointment is with the same team.
The set up I am trying to achieve is, if a customer books a time slot on one shared booking page this time slot is then removed across all other shared booking pages.
However, currently if a timeslot is booked on one shared booking page then the same timeslot shows as available and able to book on my other shared booking pages.
I have multiple shared booking pages where each appointment is with the same team. The set up I am trying to achieve is, if a customer books a time slot on one shared booking page this time slot is then removed across all other shared booking pages. However, currently if a timeslot is booked on one shared booking page then the same timeslot shows as available and able to book on my other shared booking pages. Read More
Unlocking Future Skills with Microsoft Learning Hubs
AI Learning Hub: Get skilled up and ready to power AI transformation with the Microsoft Cloud through training, documentation, articles, and credentials. Link
Copilot Learning Hub: Find technical content to enhance productivity, creativity, and data accessibility, to leverage enterprise-grade data security and privacy features for your organization. Link
AI for Startups Hub: Find training, documentation, news, and samples to help you get started or upgrade your business with the latest AI technologies. Link
Security Hub: Technical guidance to help security professionals build and implement cybersecurity strategy, architecture, and prioritized roadmaps. Link
Microsoft Tech Community – Latest Blogs –Read More
Relax real time requirement on Speedgoat on startup
Hello,
We have a model running on our Speedgoat Unit real-time target machine. Our aim is to run the model at a smaller timestep, we are aiming for a timestep of 0.2ms. Currently, the timestep is 0.66667ms.
I have attached an image from the TET Monitor. As can be seen in the image, for the main model BaseRate (0.00066667s), the min/max TETs are 0.112ms/0.213ms.
I appreciate I cannot run the model at 0.2ms, because the maximum TET is 0.213ms. However, when I am viewing the TET during real time operation, it is always much closer to the minimum, i.e. it never goes above 0.15ms.
I guess it only reaches the maximum TET (0.213ms) when the model is starting up in the first few seconds. Is there any way to relax the real time requirement when the model is first loaded to the simulator? For example if the first second actually takes 10 seconds this is fine as long as it then starts running in real time after. Alternatively, is there any other way to deal with this?
ThanksHello,
We have a model running on our Speedgoat Unit real-time target machine. Our aim is to run the model at a smaller timestep, we are aiming for a timestep of 0.2ms. Currently, the timestep is 0.66667ms.
I have attached an image from the TET Monitor. As can be seen in the image, for the main model BaseRate (0.00066667s), the min/max TETs are 0.112ms/0.213ms.
I appreciate I cannot run the model at 0.2ms, because the maximum TET is 0.213ms. However, when I am viewing the TET during real time operation, it is always much closer to the minimum, i.e. it never goes above 0.15ms.
I guess it only reaches the maximum TET (0.213ms) when the model is starting up in the first few seconds. Is there any way to relax the real time requirement when the model is first loaded to the simulator? For example if the first second actually takes 10 seconds this is fine as long as it then starts running in real time after. Alternatively, is there any other way to deal with this?
Thanks Hello,
We have a model running on our Speedgoat Unit real-time target machine. Our aim is to run the model at a smaller timestep, we are aiming for a timestep of 0.2ms. Currently, the timestep is 0.66667ms.
I have attached an image from the TET Monitor. As can be seen in the image, for the main model BaseRate (0.00066667s), the min/max TETs are 0.112ms/0.213ms.
I appreciate I cannot run the model at 0.2ms, because the maximum TET is 0.213ms. However, when I am viewing the TET during real time operation, it is always much closer to the minimum, i.e. it never goes above 0.15ms.
I guess it only reaches the maximum TET (0.213ms) when the model is starting up in the first few seconds. Is there any way to relax the real time requirement when the model is first loaded to the simulator? For example if the first second actually takes 10 seconds this is fine as long as it then starts running in real time after. Alternatively, is there any other way to deal with this?
Thanks speedgoat, real-time simulation, task execution time MATLAB Answers — New Questions
Simulation output missing in Test manager, when using Test sequence input, for baseline testing
When i run a baseline test in test manager for a model. The simulation plot provides only "verification statements", "simulation output" is not showing. What to do? but for others, who did the same, they got "simulation outputs"? what am I doing wrong?
The input method is "test sequence", "test assessment" is for verification.When i run a baseline test in test manager for a model. The simulation plot provides only "verification statements", "simulation output" is not showing. What to do? but for others, who did the same, they got "simulation outputs"? what am I doing wrong?
The input method is "test sequence", "test assessment" is for verification. When i run a baseline test in test manager for a model. The simulation plot provides only "verification statements", "simulation output" is not showing. What to do? but for others, who did the same, they got "simulation outputs"? what am I doing wrong?
The input method is "test sequence", "test assessment" is for verification. test sequence, test manager, simulation output, verification, error MATLAB Answers — New Questions
how to enable mex detect the C/C++ compiler (integrated in Visual Studio 2022) on older MATLAB (R2018b) ?
My matlab version is 2018b, and visual studio version is 2022.
I want matlab to detect the compiler integrated in the visual studio
(path:Microsoft Visual Studio2022CommunityVCToolsMSVC14.41.34120binHostx64x64cl.exe)
I tried to copy and modify the associated xml file, however, I found for the newest matlab, it is only support the oneAPI.
I don’t know how to modify the xml file, and I have not found something similar to solve this problem.
EDIT: I (Bruno) wrongly edit the question, sorryMy matlab version is 2018b, and visual studio version is 2022.
I want matlab to detect the compiler integrated in the visual studio
(path:Microsoft Visual Studio2022CommunityVCToolsMSVC14.41.34120binHostx64x64cl.exe)
I tried to copy and modify the associated xml file, however, I found for the newest matlab, it is only support the oneAPI.
I don’t know how to modify the xml file, and I have not found something similar to solve this problem.
EDIT: I (Bruno) wrongly edit the question, sorry My matlab version is 2018b, and visual studio version is 2022.
I want matlab to detect the compiler integrated in the visual studio
(path:Microsoft Visual Studio2022CommunityVCToolsMSVC14.41.34120binHostx64x64cl.exe)
I tried to copy and modify the associated xml file, however, I found for the newest matlab, it is only support the oneAPI.
I don’t know how to modify the xml file, and I have not found something similar to solve this problem.
EDIT: I (Bruno) wrongly edit the question, sorry mex compiler, visual studio 2022, matlab 2018b MATLAB Answers — New Questions
how to renew matlab license?
whenever i open matlab i receive this message on command window " Your MATLAB license will expire in 55 days.
Please contact your system administrator or
The MathWorks to renew this license."
can you please help me how to renew this?whenever i open matlab i receive this message on command window " Your MATLAB license will expire in 55 days.
Please contact your system administrator or
The MathWorks to renew this license."
can you please help me how to renew this? whenever i open matlab i receive this message on command window " Your MATLAB license will expire in 55 days.
Please contact your system administrator or
The MathWorks to renew this license."
can you please help me how to renew this? license renew!, nov_11_2017 MATLAB Answers — New Questions
Business Central Tenant Migration During Bridge to Cloud Campaign
Hello,
I have a question regarding a customer who is migrating from NAV On-Prem to Business Central Cloud. They are part of a larger corporate group and are likely to undergo a tenant migration. Typically, this wouldn’t be an issue, but they are currently in a “Bridge to Cloud” campaign. Is it possible to migrate the tenant while being part of this campaign, or are there any limitations we should be aware of?
Thank you in advance for your insights!
Hello,I have a question regarding a customer who is migrating from NAV On-Prem to Business Central Cloud. They are part of a larger corporate group and are likely to undergo a tenant migration. Typically, this wouldn’t be an issue, but they are currently in a “Bridge to Cloud” campaign. Is it possible to migrate the tenant while being part of this campaign, or are there any limitations we should be aware of?Thank you in advance for your insights! Read More
Export Enterprise apps and signin count
I need to export all the configured enterprise apps and login count for each. This script does the job, but it truncates the application name (see example screen shot) and I can’t figure out how to export the results to csv. Can anyone help?
#To enable verbose
[CmdletBinding()]
Param()
#Retrieve list of applications
$Apps = Get-AzureADApplication
#Loop through each application
ForEach($App in $Apps){
Write-Verbose “Processing $($App.DisplayName)”
#Retrieve logs filtered on AppID
$Log = Get-AzureADAuditSignInLogs -All $true -filter “appid eq ‘$($App.AppID)'”
#Create a custom object for output
[PSCustomObject]@{
ApplicationName = $App.DisplayName
ApplicationID = $App.AppID
SignIns = $Log.count
}
#To prevent throttling on Sign-in Log querying, insert a sleep
Start-Sleep 1
}
I need to export all the configured enterprise apps and login count for each. This script does the job, but it truncates the application name (see example screen shot) and I can’t figure out how to export the results to csv. Can anyone help? #To enable verbose[CmdletBinding()]Param()#Retrieve list of applications$Apps = Get-AzureADApplication#Loop through each applicationForEach($App in $Apps){Write-Verbose “Processing $($App.DisplayName)”#Retrieve logs filtered on AppID$Log = Get-AzureADAuditSignInLogs -All $true -filter “appid eq ‘$($App.AppID)'”#Create a custom object for output[PSCustomObject]@{ApplicationName = $App.DisplayNameApplicationID = $App.AppIDSignIns = $Log.count}#To prevent throttling on Sign-in Log querying, insert a sleepStart-Sleep 1} Read More
Copilot and the difference between OneDrive & SharePoint
hi community,
been working on retrieving files via Copilot but I seem to have the issue that it cannot make the difference between OneDrive and SharePoint (eg asking questions only meant for OneDrive files).
Does anyone have better experience with this?
Thx in advance!
hi community,been working on retrieving files via Copilot but I seem to have the issue that it cannot make the difference between OneDrive and SharePoint (eg asking questions only meant for OneDrive files). Does anyone have better experience with this? Thx in advance! Read More
Which App Description is Used in the SharePoint App Store: package-solution.json or Submission Input
I’m developing a SharePoint app using SPFx and am preparing to publish it for the first time in the app store. I’ve added the app description in the package-solution.json file as instructed. However, during the submission process, I’m prompted to enter the description again. My question is: which app description will be used in the app store—the one in package-solution.json or the one I enter during submission?
I’m asking this because I’ve encountered an issue with the package-solution.json file: the description does not support HTML tags. There’s an open issue on GitHub regarding this.
https://github.com/SharePoint/sp-dev-docs/issues/9522
When I manually deploy the app in the app catalog, the description appears as plain text. However, in the app store, it is showing in a rich text control.
I’m developing a SharePoint app using SPFx and am preparing to publish it for the first time in the app store. I’ve added the app description in the package-solution.json file as instructed. However, during the submission process, I’m prompted to enter the description again. My question is: which app description will be used in the app store—the one in package-solution.json or the one I enter during submission?I’m asking this because I’ve encountered an issue with the package-solution.json file: the description does not support HTML tags. There’s an open issue on GitHub regarding this.https://github.com/SharePoint/sp-dev-docs/issues/9522When I manually deploy the app in the app catalog, the description appears as plain text. However, in the app store, it is showing in a rich text control. Read More
Microsoft defender for endpoint
Hi
I would like to know is there any possibility to have defender for endpoint on premise installation, means without internet connectivity.
One of our site have this special requirement to install Microsoft defender for endpoint completely isolated system. If possible what licenses should i have to order.
Thanks in advance.
Hi I would like to know is there any possibility to have defender for endpoint on premise installation, means without internet connectivity.One of our site have this special requirement to install Microsoft defender for endpoint completely isolated system. If possible what licenses should i have to order.Thanks in advance. Read More
Exploring Responsible AI
With great power comes great responsibility.
While AI offers powerful capabilities, it also brings risks. Learn about the importance of maintaining a responsible approach to AI. Explore potential risks and learn about tools, resources, and best practices that will help you get the most out of AI while being responsible and minimizing risks.
Take the Microsoft Learn AI Skills Challenge
Dive into the latest AI technologies like Microsoft Copilot, GitHub, Microsoft Azure, and Microsoft Fabric. Explore six curated topics designed to elevate your skills, participate in interactive community events, and gain insights from expert-led sessions.
Generative AI challenge: Fundamentals of responsible generative AI
Developers and data scientists creating generative AI solutions need to adopt a responsible approach. Learn the set of guidelines for responsible GenAI defined by experts at Microsoft, building on its Responsible AI standard.
Responsible AI resources for developers
Check out this blog post for an overview of Responsible AI and the Responsible AI Standard guidelines. Learn about Microsoft tools and resources, such as the Responsible AI Dashboard, to help aid developers in building and monitoring AI solutions responsibly.
Develop generative AI solutions with Azure OpenAI Service
Build generative AI solutions responsibly with Azure OpenAI Service. This free learning path from Microsoft Learn will help you get started.
GitHub: Using generative AI responsibly
Why should you prioritize Responsible AI when building a GenAI application? This course on GitHub explores risks (such as generating incorrect information or creating blatantly harmful content) and principles for building AI solutions responsibly.
New blog series: Responsible AI from principles to practice
At its core, Responsible AI is about developing, deploying, and managing AI systems in a way that is ethical and secure. This new blog series will cover concepts, tools, and practical examples of responsible AI.
Explore tools and best practices for responsible AI
Evaluate, understand, and make informed decisions about your AI systems. Check out this page for tools, best practices, and other resources to help you understand, plan, and implement AI responsibly.
Build Copilot agents with Microsoft Copilot Studio and supercharge your business
Learn about Copilot agents. Find out how to create, manage, and deploy Copilot agents using Microsoft Copilot Studio.
Microsoft Learn: Fundamentals of Responsible Generative AI
Ready to learn the fundamentals of responsible Generative AI? Then check out this free module from Microsoft Learn.
The future of AI: Exploring multi-agent AI systems
Explore the potential of multi-agent AI systems using Semantic Kernel and other frameworks on Azure AI. Discover how developers can create sophisticated AI solutions where multiple agents collaborate to solve intricate problems, ensuring accuracy and efficiency.
Upcoming events
Save the date: .NET Conf 2024
Online: November 12-14, 2024
Get ready for .NET Conf 2024 and the launch of .NET 9. Tune into the live digital event to celebrate the release of .NET 9 and discover what you can do with the new version.
Get ready for Microsoft Ignite
Online: November 19-21, 2024 | In-person: November 19-22, 2024
Join Microsoft Ignite to experience the latest innovations for AI transformation and discover solutions that help modernize and manage intelligent apps, safeguard data, accelerate productivity, and expand your services.
Additional (non-theme) content
Develop from the cloud: Building Linux apps with Microsoft Dev Box and WSL
Use Dev Box Team Customizations and Imaging to streamline your team’s development workflow
Roadmaps for Microsoft Dev Box and Azure Deployment Environments are now live
Microsoft Dev Box Customization Now Supports Native Run-as-user
Deploy websites to the cloud with Azure Static Web Apps
Introducing Copilot agents: Build a new era of productivity with Copilot agents
Microsoft Graph connectors update: Expand Copilot’s knowledge with 50 million items of external data
Increase your Microsoft Teams app’s visibility and adoption with asynchronous link unfurling
Dev Proxy v0.20 with improved simulating API errors and a new API for building integrations
Microsoft Learn: Extend Microsoft 365 Copilot with Copilot Studio actions and connectors
Microsoft Tech Community – Latest Blogs –Read More