Month: October 2024
Security review for Microsoft Edge version 130
We are pleased to announce the security review for Microsoft Edge, version 130!
We have reviewed the new settings in Microsoft Edge version 130 and determined that there are no additional security settings that require enforcement. The Microsoft Edge version 128 security baseline continues to be our recommended configuration which can be downloaded from the Microsoft Security Compliance Toolkit.
Microsoft Edge version 130 introduced one new setting and we have included a spreadsheet listing the new setting to make it easier for you to find.
As a friendly reminder, all available settings for Microsoft Edge are documented here, and all available settings for Microsoft Edge Update are documented here.
Please continue to give us feedback through the Security Baselines Discussion site or this post.
Microsoft Tech Community – Latest Blogs –Read More
Power Automate Teams Graph HTTP request: Add support for user presence (status)
Power Automate can send a Graph API request to the Microsoft Teams endpoint on behalf of the user who owns the automation. This can be achieved using the “Send a Microsoft Graph HTTP request”-Connector for Teams (https://learn.microsoft.com/de-de/connectors/teams/?tabs=text1%2Cdotnet#send-a-microsoft-graph-http-request).
Unfortunately the 2nd segment in all calls are limited to channels, chats, installedApps, messages, pinnedMessages. “presence” is not supported.
Please add support for “presence”, this feature is sorely missing in automation.
Power Automate can send a Graph API request to the Microsoft Teams endpoint on behalf of the user who owns the automation. This can be achieved using the “Send a Microsoft Graph HTTP request”-Connector for Teams (https://learn.microsoft.com/de-de/connectors/teams/?tabs=text1%2Cdotnet#send-a-microsoft-graph-http-request).Unfortunately the 2nd segment in all calls are limited to channels, chats, installedApps, messages, pinnedMessages. “presence” is not supported.Please add support for “presence”, this feature is sorely missing in automation. Read More
Application Protection Policy not applying to Microsoft 365 (office)
Hello Community,
We have setup an APP for MS applications (android), that prevent users from saving attachments, or documents received by teams or even documents that reside on OneDrive to their local storage, we have also configured some security aspects like PIN code or biometric fingerprint to access the apps.
Everything is working fine from Teams, Outlook, OneDrive, but when i use “Microsoft 365 (Office)” App, its like the policy is not applied to this specific application, i can download files, i can access the app with no need of PIN or Fingerprint, i can access a Word file and choose save as and put it in my local phone storage.
i have already created a ticket to Microsoft, but they are veeery slow.
can you please help.
Hello Community,We have setup an APP for MS applications (android), that prevent users from saving attachments, or documents received by teams or even documents that reside on OneDrive to their local storage, we have also configured some security aspects like PIN code or biometric fingerprint to access the apps.Everything is working fine from Teams, Outlook, OneDrive, but when i use “Microsoft 365 (Office)” App, its like the policy is not applied to this specific application, i can download files, i can access the app with no need of PIN or Fingerprint, i can access a Word file and choose save as and put it in my local phone storage.i have already created a ticket to Microsoft, but they are veeery slow.can you please help. Read More
Does anyone use group expiration?
Curious to know if anyone has group expiration enabled in your tenant. Are you satisfied with the way it works? Any caveats or gotchas you experienced?
Curious to know if anyone has group expiration enabled in your tenant. Are you satisfied with the way it works? Any caveats or gotchas you experienced? Read More
腾龙公司游戏网址-17300435119(微同)
可以通过 Azure 门户进行直观的部署操作。在门户中,可以选择所需的服务、配置实例参数、设置网络访问等。也可以使用 Azure C LI(命令行界面)或 Azure Pow e r S h ell 进行自动化部署。这对于大规模部署或需要与持续集成 / 持续部署(CI/CD)流程集成的场景非常有用。对于一些特定的服务,还可以使用 Azure Resource Manager 模板进行部署。这些模板可以定义整个部署的架构和配置,实现可重复的部署过程。
在部署分析服务之前,需要考虑如何将现有数据迁移到 Azure。可以使用 Azure Data Factory 等数据集成工具,将数据从本地或其他云平台迁移到 Azure 存储或数据仓库中。确保数据的质量和一致性也是重要的一步。可以使用数据清洗和验证工具,对迁移过来的数据进行处理,以满足分析服务的要求。
部署方式可以通过 Azure 门户进行直观的部署操作。在门户中,可以选择所需的服务、配置实例参数、设置网络访问等。也可以使用 Azure C LI(命令行界面)或 Azure Pow e r S h ell 进行自动化部署。这对于大规模部署或需要与持续集成 / 持续部署(CI/CD)流程集成的场景非常有用。对于一些特定的服务,还可以使用 Azure Resource Manager 模板进行部署。这些模板可以定义整个部署的架构和配置,实现可重复的部署过程。数据迁移和集成在部署分析服务之前,需要考虑如何将现有数据迁移到 Azure。可以使用 Azure Data Factory 等数据集成工具,将数据从本地或其他云平台迁移到 Azure 存储或数据仓库中。确保数据的质量和一致性也是重要的一步。可以使用数据清洗和验证工具,对迁移过来的数据进行处理,以满足分析服务的要求。 Read More
How to Test Network on Linux Web App with Limited Tools
In some Linux web apps, you may need to test the network, but the customer’s VNET doesn’t allow external connections, and the available tools in the blessed image are limited.
This tutorial will show you how to work around this limitation by downloading the necessary binary (such as tcpping) from an external environment and then transferring it to the restricted environment using base64 encoding.
TOC:
Preparing the Binary from a Network-Accessible Environment
Transferring the Binary to the Restricted Environment
Executing the Binary in the Restricted Environment
Conclusion
Preparing the Binary from a Network-Accessible Environment
STEP 1: Find an environment that has internet access, and download the required binary (in this case, tcpping) or any other necessary binary using the wget command.
wget https://pingpros.com/pub/tcpping
STEP 2: Since the restricted environment cannot access the internet directly, we will convert the binary into base64 format. If the binary is under 1 MB in size, it can be transferred using the terminal.
base64 tcpping > tcpping.txt ; rm tcpping
STEP 3: You now have a tcpping.txt file that contains the base64-encoded binary. Display the contents of the file so that you can copy and paste it into the restricted environment later:
cat tcpping.txt ; rm tcpping.txt
Transferring the Binary to the Restricted Environment
STEP 1: Once you are in the restricted environment (where you cannot access the external network), save the base64-encoded binary by pasting it into a new text file. Use the following command to save it as tcpping.txt:
echo “YOUR_BASE64_HERE” > tcpping.txt
Replace YOUR_BASE64_HERE with the content of the base64-encoded tcpping.txt that you copied from the network-accessible environment.
STEP 2: Decode the base64-encoded file back into a binary using the following command:
base64 -d < tcpping.txt > tcpping
chmod 755 tcpping
Executing the Binary in the Restricted Environment
STEP 1: Run the binary to test the local network. For example, you can ping the loopback address (127.0.0.1):
./tcpping 127.0.0.1
STEP 2: Check the results of the network test to ensure that the tcpping binary is working properly.
Conclusion
By following these steps, you can successfully transfer and execute binaries in a Linux web app environment that does not allow external internet access. This method uses base64 encoding to move small binaries into the restricted environment for network testing or other purposes.
This approach has several limitations, aside from the overall file size not being too large:
You must choose a static binary without dependent libraries, and it is best if it is a single file, such as nslookup or dig.
You must ensure that the file source does not contain malicious code, and you cannot sacrifice system and data security for the sake of convenient transmission.
Similarly, if the operating unit is a company, you need to pay extra attention to whether IT has any restrictions on related behaviors.
Microsoft Tech Community – Latest Blogs –Read More
How to find the person who created a specific SharePoint List
Hello Community,
I would like your help on steps to identify the Author(creator) of a SharePoint list. I don’t this info is available in the UI.
Also Get-SPweb command is not working for SharePoint online.
Kindly provide me a PowerShell command to fetch the List Author for a list under SharePoint Online list.
Hello Community, I would like your help on steps to identify the Author(creator) of a SharePoint list. I don’t this info is available in the UI. Also Get-SPweb command is not working for SharePoint online. Kindly provide me a PowerShell command to fetch the List Author for a list under SharePoint Online list. Read More
AudioSourceNode via Mesh Cloudscripting
Hi everyone, just want to ask if it’s possible to assign audio clip to an audio source using cloud scripting? As of now, AudioSourceNode can call via CS by adding Mesh.CloudScripting.Audio but can find any property to assign audio clip into it. Thanks in advance
Hi everyone, just want to ask if it’s possible to assign audio clip to an audio source using cloud scripting? As of now, AudioSourceNode can call via CS by adding Mesh.CloudScripting.Audio but can find any property to assign audio clip into it. Thanks in advance Read More
Strange behaviour using temp tables with a static named index (deadlock) and an individual named idx
Can someone give me an explaination for it?
SELECT a.*, CONVERT(BIGINT, NULL) as TableBID, CONVERT(BIGINT, NULL) as TableCID
INTO
#tmpA
FROM
TableA a
CREATE CLUSTERED INDEX ix_tmpA ON #tmpA (ID);
SELECT b.*
INTO
#tmpB
FROM
TableB b
ALTER TABLE #tmpB ADD PRIMARY KEY CLUSTERED (ID)
CREATE SPATIAL INDEX ix_spatialB ON #tmpB (Geo)
SELECT c.*
INTO
#tmpC
FROM
TableC c
ALTER TABLE #tmpB ADD PRIMARY KEY CLUSTERED (ID)
CREATE SPATIAL INDEX ix_spatialB ON #tmpB (Geo)
UPDATE a SET
TableBID =(
SELECT TOP 1 ID FROM
#tmpB b WITH(INDEX(ix_spatialB))
WHERE
b.Geo.STIntersects(geography::Point(a.Latitude, a.Longitude, 4326) = 1
)
FROM
#tmpA a
UPDATE a SET
TableCID =(
SELECT TOP 1 ID FROM
#tmpC c WITH(INDEX(ix_spatialC))
WHERE
c.Geo.STIntersects(geography::Point(a.Latitude, a.Longitude, 4326) = 1
)
FROM
#tmpA a
Select * from #tmpA
Select * from #tmpB
Select * from #tmpC
DROP TABLE #tmpA
DROP TABLE #tmpB
DROP TABLE #tmpC
Hello, my script looks similar to the following script. This script is getting called very often (parallel). In this version it sometimes results in a deadlock situation. The deadlock happens only between two or more calls of this script. But, if I give ix_tmpA an individual name, like ‘ix_tmpA_1’, ‘ix_tmpA_2’, ‘ix_tmpA_3’…, for every call, it never results in a deadlock. I don’t understand why.Can someone give me an explaination for it?Thank you! SELECT a.*, CONVERT(BIGINT, NULL) as TableBID, CONVERT(BIGINT, NULL) as TableCID
INTO
#tmpA
FROM
TableA a
CREATE CLUSTERED INDEX ix_tmpA ON #tmpA (ID);
SELECT b.*
INTO
#tmpB
FROM
TableB b
ALTER TABLE #tmpB ADD PRIMARY KEY CLUSTERED (ID)
CREATE SPATIAL INDEX ix_spatialB ON #tmpB (Geo)
SELECT c.*
INTO
#tmpC
FROM
TableC c
ALTER TABLE #tmpB ADD PRIMARY KEY CLUSTERED (ID)
CREATE SPATIAL INDEX ix_spatialB ON #tmpB (Geo)
UPDATE a SET
TableBID =(
SELECT TOP 1 ID FROM
#tmpB b WITH(INDEX(ix_spatialB))
WHERE
b.Geo.STIntersects(geography::Point(a.Latitude, a.Longitude, 4326) = 1
)
FROM
#tmpA a
UPDATE a SET
TableCID =(
SELECT TOP 1 ID FROM
#tmpC c WITH(INDEX(ix_spatialC))
WHERE
c.Geo.STIntersects(geography::Point(a.Latitude, a.Longitude, 4326) = 1
)
FROM
#tmpA a
Select * from #tmpA
Select * from #tmpB
Select * from #tmpC
DROP TABLE #tmpA
DROP TABLE #tmpB
DROP TABLE #tmpC Read More
Issue with Printer connection
Hi,
I have an HP Printer which is connected to the Azure Universal printer. I face the issue where I try to print. It works perfectly fine the first time when I want to print something but it doesn’t work the second time. I have to connect it everytime I have to print. A solution to this would be very helpful
Hi, I have an HP Printer which is connected to the Azure Universal printer. I face the issue where I try to print. It works perfectly fine the first time when I want to print something but it doesn’t work the second time. I have to connect it everytime I have to print. A solution to this would be very helpful Read More
PowerShell ISE slow after launch
Hi,
I have an issue with PowerShell ISE on windows 10 OS, after I launch ISE its take 10 minutes to give options for run script, till then i see only stop operation button.
Please help me fix this , it hindering my work.
Attached screenshot. Thanks.
Hi, I have an issue with PowerShell ISE on windows 10 OS, after I launch ISE its take 10 minutes to give options for run script, till then i see only stop operation button.Please help me fix this , it hindering my work.Attached screenshot. Thanks. Read More
Is Office product key finder able to retrieve my lost product key?
Hello community experts,
I recently upgraded my PC to Windows 11 from Windows 10 via clean install. I though the app keys are untouched during this process. Unfortunately, I had to input the product key again when I was trying to open Office app on my computer.
I heard Office product key finder software is able to retrieve lost product key. Is this true nowadays? I don’t know how it works. I got a lot of recommendations when searching my answer via Bing.
Hello community experts, I recently upgraded my PC to Windows 11 from Windows 10 via clean install. I though the app keys are untouched during this process. Unfortunately, I had to input the product key again when I was trying to open Office app on my computer. I heard Office product key finder software is able to retrieve lost product key. Is this true nowadays? I don’t know how it works. I got a lot of recommendations when searching my answer via Bing. Read More
What will be the validity period for the Azure codes purchased before October 25th?
I would like to seek clarification regarding the Azure passes in relation to our upcoming AZ-400 training scheduled from October 25th to 28th. As per your communication, it seems that Azure passes will retire on October 25th.
Specifically, if we purchase labs from ALH provider and distribute them to participants for their training, will they be able to redeem the lab codes and collect the Azure pass codes on October 25th? If they redeem the ALH Lab key and collect the Azure pass code on October 26th, will they still be able to use it, or will all Azure pass codes be stopped effectively on October 25th?
Additionally, since it was mentioned that Azure passes will no longer be available for purchase on the ALH platform, I would like to know the status of codes bought on or before October 25th, 2024. Will participants be able to access and use these Azure pass codes at a later time? What will be the validity period for the Azure codes purchased before October 25th?
Your prompt response would be greatly appreciated, as we have committed these corporate classes to our clients some time ago.
Thank you in advance for your assistance!
I would like to seek clarification regarding the Azure passes in relation to our upcoming AZ-400 training scheduled from October 25th to 28th. As per your communication, it seems that Azure passes will retire on October 25th.Specifically, if we purchase labs from ALH provider and distribute them to participants for their training, will they be able to redeem the lab codes and collect the Azure pass codes on October 25th? If they redeem the ALH Lab key and collect the Azure pass code on October 26th, will they still be able to use it, or will all Azure pass codes be stopped effectively on October 25th?Additionally, since it was mentioned that Azure passes will no longer be available for purchase on the ALH platform, I would like to know the status of codes bought on or before October 25th, 2024. Will participants be able to access and use these Azure pass codes at a later time? What will be the validity period for the Azure codes purchased before October 25th?Your prompt response would be greatly appreciated, as we have committed these corporate classes to our clients some time ago.Thank you in advance for your assistance! Read More
Is it possible to disallow proxyAddress as Sign-In Identifier?
As part of a revised naming scheme for user accounts we’re planning to roll out, I’d like to disallow Exchange Online email addresses and proxyAddresses from being used instead of the User Principal Name as an alternative identifier when users sign in to their accounts. This is supposed to strengthen security as users don’t share one of the authentication factors with every email they send and the user names can’t be easily guessed because they don’t use the actual first or last name of the user behind them.
This is the only Microsoft Learn article I found that was describing something similar:
Basically I want to do the opposite of what the article is describing and I’m not synching my users using Microsoft Entra Connect. I disabled the “Email as alternate login ID” option described in the article anyways but unsurprisingly, that didn’t have the desired effect.
Does anyone know if this is even possible and if so, how to do it?
Thanks in advance!
This is my first post in this community. If I did something wrong (like choosing the wrong label) please be kind, tell me, and I’m going to adapt my post.
As part of a revised naming scheme for user accounts we’re planning to roll out, I’d like to disallow Exchange Online email addresses and proxyAddresses from being used instead of the User Principal Name as an alternative identifier when users sign in to their accounts. This is supposed to strengthen security as users don’t share one of the authentication factors with every email they send and the user names can’t be easily guessed because they don’t use the actual first or last name of the user behind them.This is the only Microsoft Learn article I found that was describing something similar:https://learn.microsoft.com/en-us/entra/identity/authentication/howto-authentication-use-email-signin Basically I want to do the opposite of what the article is describing and I’m not synching my users using Microsoft Entra Connect. I disabled the “Email as alternate login ID” option described in the article anyways but unsurprisingly, that didn’t have the desired effect. Does anyone know if this is even possible and if so, how to do it? Thanks in advance! This is my first post in this community. If I did something wrong (like choosing the wrong label) please be kind, tell me, and I’m going to adapt my post. Read More
Microsoft Update Affects How Wildcards Work with Dynamic Distribution Groups
It’s time to check recipient filters for dynamic distribution groups to ensure that you don’t have any wildcard prefixes used with the -eq operator to find recipients based on their email addresses. A November 30 update will stop this kind of recipient filter working, and might have a knock-on effect on other processes.
https://practical365.com/dynamic-distribution-group-wildcard/
It’s time to check recipient filters for dynamic distribution groups to ensure that you don’t have any wildcard prefixes used with the -eq operator to find recipients based on their email addresses. A November 30 update will stop this kind of recipient filter working, and might have a knock-on effect on other processes.
https://practical365.com/dynamic-distribution-group-wildcard/ Read More
Feature Request: Enable Custom Measures and Private Offers for AppSource Subscriptions
Hi All,
Sharing a request that might interest other ISV.
When configuring your app subscription, there’s an option to create custom measures for pricing, such as charging $10 for every 100 tickets created, instead of the usual per-user seat model.
While this is a great feature for SaaS products, there’s a limitation: apps using this pricing model can only be published on Azure Marketplace, not AppSource. As a result, this pricing option isn’t available for Teams Apps.
Similarly, private offers cannot be created and published on AppSource.
It would be great if Microsoft could enable these features for AppSource as well!
Best
Hi All,Sharing a request that might interest other ISV.When configuring your app subscription, there’s an option to create custom measures for pricing, such as charging $10 for every 100 tickets created, instead of the usual per-user seat model.While this is a great feature for SaaS products, there’s a limitation: apps using this pricing model can only be published on Azure Marketplace, not AppSource. As a result, this pricing option isn’t available for Teams Apps.Similarly, private offers cannot be created and published on AppSource.It would be great if Microsoft could enable these features for AppSource as well!Best Read More
Looking for Early Update Notifications or Beta Groups for Microsoft Teams and Graph API
Hi Everyone,
We’ve often been caught off guard by changes made to Microsoft Teams or the Graph API. While regular updates are beneficial, as an ISV, it would be really helpful to be informed in advance so we can adapt our products accordingly.
Does anyone know if there’s a mailing list or a beta testing group for ISVs to stay ahead of these updates?
Thanks!
Best
Hi Everyone,We’ve often been caught off guard by changes made to Microsoft Teams or the Graph API. While regular updates are beneficial, as an ISV, it would be really helpful to be informed in advance so we can adapt our products accordingly.Does anyone know if there’s a mailing list or a beta testing group for ISVs to stay ahead of these updates?Thanks!Best Read More
Announcing Public Preview of new attach/detach disks API for VMs/VMSS
We are excited to announce the public preview of a new API that will make attaching and detaching disks to a VM faster and easier. The new API is designed to reduce the number of API calls and the latency involved in disk operations. It simplifies the inputs required to attach disks and allows multiple disks to be attached/detached in one request. The new API is compatible with single instance VMs, VMSS Uniform and VMSS Flex.
The new API offers several advantages over the existing disk management API. Here are some of the benefits you can expect from using the new API:
Faster and more efficient: The new API reduces the number of API calls and the latency involved in attaching and detaching disks. For example, you can mention only the disk that needs to be attached/detached and don’t need to mention the LUN number. It helps you avoid the GET API call required for getting the list of all disks & LUN numbers being used.
Easier and more intuitive: The new API simplifies the disk management workflow by allowing you to attach and detach multiple disks in one request, and by reducing the input parameters.
Separate Throttling limits – Currently, customers need to make Update VM API requests to attach/detach a disk and there is a limit of max 12 requests per VM per min. With this new API, customers will get additional quota of X requests per VM per min, in addition to the 12 requests already available for Update VM API.
One of the most common tasks for cloud users is to manage their disk resources. Whether you need to add more storage, backup your data, or migrate to a different instance, you need to attach and detach disks from your virtual machines. This new API is designed to reduce the number of API calls and the latency involved in disk operations.
The new API is available as a RESTful endpoint that you can access from any programming language or tool. Since API is in Public Preview, there are no SLA guarantees on the API.
How to use the API?
POST https://management.azure.com/subscriptions/{subscription-id}/resourceGroups/rgcompute/providers/Microsoft.Compute/virtualMachines/aaaaaaaaaaaaaaaaaaaa/attachDetachDataDisks?api-version=2024-03-01
{
“dataDisksToAttach”: [
{
“diskId”: “/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/disks/Disk1”
},
{
“lun”: 2,
“diskId”: “/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/disks/Disk2”,
“diskEncryptionSet”: {
“id”: “/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/{existing-diskEncryptionSet-name}”
},
“caching”: “ReadWrite”,
“deleteOption”: “Detach”,
“writeAcceleratorEnabled”: false
}
],
“dataDisksToDetach”: [
{
“diskId”: “/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/disks/vmss3176_vmss3176_1_disk1_1a4e784bdafa49baa780eb2d128ff65x”,
“detachOption”: “ForceDetach”
},
{
“diskId”: “/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/disks/vmss3176_vmss3176_4_disk4_4d4e784bdafa49baa780eb2d256ff41z”
}
]
}
For more information, please refer to API documentation.
Microsoft Tech Community – Latest Blogs –Read More
Outlook 365 for 1 user keeps having connection issues in cached mode
I have one that has us scratching our heads in the office.
We have one of our users that is consistently getting disconnected on outlook. He has a new laptop and has only been seeing these issues for a few weeks. He is using office 365 and we have tried so many things (I have listed these all below). We think we have ruled out that it is an issue with the laptop or the connection it is on but still seeing the problems.
Any help or ideas from anyone here is much appreciated.
1 user – office 365 standard
outlook 365 – Cached mode only 1 year downloaded
Multiple shared mailbox’es all online only (work perfectly)
Tried 2 different Laptops both HP but different models.
2 different internet locations both wifi and ethernet
uninstalled, reinstalled, repaired office
Re-created Profiles
Removed any VPN
Flushed DNS Cache
I have one that has us scratching our heads in the office. We have one of our users that is consistently getting disconnected on outlook. He has a new laptop and has only been seeing these issues for a few weeks. He is using office 365 and we have tried so many things (I have listed these all below). We think we have ruled out that it is an issue with the laptop or the connection it is on but still seeing the problems. Any help or ideas from anyone here is much appreciated. 1 user – office 365 standard outlook 365 – Cached mode only 1 year downloadedMultiple shared mailbox’es all online only (work perfectly)Tried 2 different Laptops both HP but different models. 2 different internet locations both wifi and ethernet uninstalled, reinstalled, repaired officeRe-created ProfilesRemoved any VPN Flushed DNS Cache Read More
Will Microsoft 365 Copilot Errors and Hallucinations Eventually Corrupt the Microsoft Graph?
Copilot errors in generated text can happen for a variety of reasons, including poor user prompts. If the errors end up in documents, they can infect the Graph and become the root cause for further errors. Over time, spreading infection can make the results derived from Graph sources like SharePoint Online unreliable. Humans can prevent errors by checking AI content thoroughly before including it in documents, but does this always happen?
https://office365itpros.com/2024/10/18/copilot-errors-graph/
Copilot errors in generated text can happen for a variety of reasons, including poor user prompts. If the errors end up in documents, they can infect the Graph and become the root cause for further errors. Over time, spreading infection can make the results derived from Graph sources like SharePoint Online unreliable. Humans can prevent errors by checking AI content thoroughly before including it in documents, but does this always happen?
https://office365itpros.com/2024/10/18/copilot-errors-graph/ Read More