Month: October 2024
Windows 11 Update Bug Causing Cleanup Issue in 24H2 Patch
I recall experiencing a similar issue in the past, perhaps when using Vista, although I can’t be certain. It turned out to be a false report regarding the file sizes. Now, facing a situation that appears familiar, I performed a clean install and installed a few updates. I find it hard to believe that the current size is already 8.63GB. I believe it’s best to ignore it for now and trust that the issue will be resolved.
I recall experiencing a similar issue in the past, perhaps when using Vista, although I can’t be certain. It turned out to be a false report regarding the file sizes. Now, facing a situation that appears familiar, I performed a clean install and installed a few updates. I find it hard to believe that the current size is already 8.63GB. I believe it’s best to ignore it for now and trust that the issue will be resolved. Read More
What Factors Prevent Us from Upgrading to Windows 11
Greetings,
Welcome to the Microsoft Community.
Thank you for reaching out. I see that you are interested in transitioning to Windows 11 as Windows 10 is set to end its support in 2025. The upgrade to Windows 11 requires specific hardware components such as TPM 2.0, UEFI firmware with Secure Boot support, certain processors, and increased memory and storage capacities. If your current PC does not meet these criteria, upgrading to Windows 11 might not be feasible. You can attempt an in-place upgrade to Windows 11, which will refresh your system without requiring reactivation or data loss. However, it is still advisable to back up any critical data beforehand.
You can explore the steps for performing an in-place upgrade on Windows 11 in our Microsoft Community.
If upgrading to Windows 11 remains challenging, you may consider upgrading some of your current hardware components or investing in a new PC.
I eagerly await your response.
Warm regards,
Aaron | Support Specialist at Microsoft Community
Greetings, Welcome to the Microsoft Community. Thank you for reaching out. I see that you are interested in transitioning to Windows 11 as Windows 10 is set to end its support in 2025. The upgrade to Windows 11 requires specific hardware components such as TPM 2.0, UEFI firmware with Secure Boot support, certain processors, and increased memory and storage capacities. If your current PC does not meet these criteria, upgrading to Windows 11 might not be feasible. You can attempt an in-place upgrade to Windows 11, which will refresh your system without requiring reactivation or data loss. However, it is still advisable to back up any critical data beforehand. You can explore the steps for performing an in-place upgrade on Windows 11 in our Microsoft Community. If upgrading to Windows 11 remains challenging, you may consider upgrading some of your current hardware components or investing in a new PC. I eagerly await your response. Warm regards, Aaron | Support Specialist at Microsoft Community Read More
Consultative transfer using .net sdk and the current call status
Hi.
I am using GraphQL .net sdk to accept incoming call. Lets say the incoming call is A and then I do make another call to ask if an agent can join (call it B) to call A.
This works fine and I can see the participant in call A are now in a call with participant in B.
var transferTarget1 = new InvitationParticipantInfo {
ReplacesCallId = call_B.Id.ToString(),
Identity = agentIdinCallB
};
await (_callA).TransferAsync(transferTarget1);
How ever, I see that _callA is Terminated now I tried the other way :
var transferTarget1 = new InvitationParticipantInfo {
ReplacesCallId = call_A.Id.ToString(),
Identity = agentIdinCallB
};
await (_callB).TransferAsync(transferTarget1);
Same happend and incoming call, A is terminated.
I need to keep track of the incoming call for Observability proposes and later add participants to it, but now it does not let me do that. Does calling TransferAsync makes new a call object ?
Hi. I am using GraphQL .net sdk to accept incoming call. Lets say the incoming call is A and then I do make another call to ask if an agent can join (call it B) to call A. This works fine and I can see the participant in call A are now in a call with participant in B.var transferTarget1 = new InvitationParticipantInfo {
ReplacesCallId = call_B.Id.ToString(),
Identity = agentIdinCallB
};
await (_callA).TransferAsync(transferTarget1);How ever, I see that _callA is Terminated now I tried the other way :var transferTarget1 = new InvitationParticipantInfo {
ReplacesCallId = call_A.Id.ToString(),
Identity = agentIdinCallB
};
await (_callB).TransferAsync(transferTarget1);Same happend and incoming call, A is terminated.I need to keep track of the incoming call for Observability proposes and later add participants to it, but now it does not let me do that. Does calling TransferAsync makes new a call object ? Read More
Copilot no longer supports image uploads
Copilot is no longer allowing image uploading/uploading. Neither in web mode nor in work mode. Does anyone know if they took away the resource for good or if it is some instability?
The official documentation mentions that at least in web mode it should be supported.
Document Reference:
File formats supported by Copilot – Microsoft Support
Copilot is no longer allowing image uploading/uploading. Neither in web mode nor in work mode. Does anyone know if they took away the resource for good or if it is some instability? The official documentation mentions that at least in web mode it should be supported. Document Reference:File formats supported by Copilot – Microsoft Support Read More
An obscure (low-severity) bug involving AutoKeys, MouseMove and RunCommand
Setup
1. Create a new database.
2. Create a new module with the following content:
Function myPaste()
DoCmd.RunCommand acCmdPaste
End Function
and save it as “Module1”.
3. Create a new macro with the following content:
Submacro: ^b
RunCode =myPaste()
and save it as “AutoKeys”.
4. Create a new Form with
– a text box “Text0” and
– a button “myButton”
and save it as “Form1”.
5. Add two event handlers ([Event Procedure]) to myButton with the following code:
Private Sub myButton_Click()
Text0.SetFocus
DoCmd.OpenForm “Form2”
End Sub
Private Sub myButton_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
‘ Deliberately empty
End Sub
6. Create a new Form with
– a text box “Text0”
and save it as “Form2”.
Repro
Copy text into the clipboard (for example, the word “test”).Open Form1.Click on the button. Don’t do anything after clicking the button. In particular, do not move the mouse for a few seconds (so that it still hovers over the space where the button was while the new form opens).Hit Ctrl-b
Expected result
Text0 in Form2 now contains the content of the clipboard.
Actual result
Text0 in Form1 now contains the content of the clipboard.
Notes
This bug is more of a curiosity than a real problem. It can be reproduced with the current channel of Microsoft 365 (v2409, 18025.20160) and with various older versions of 365, but not with Access 2007, so it was probably introduced at some time during the last 17 years. There are more important bugs to fix in Access, so it’s probably not worth investing more time in it, but I still felt the need to document this issue.On workaround to prevent the bug from happening is to add an (empty) KeyDown handler to either Text0 in Form2 or, after enabling Key Preview, to Form2 itself.The MouseMove event handler on the button is required to reproduce the bug.We discovered this issue because our applications use a “Ctrl-v” AutoKey that sanitizes the clipboard (replace tabs with spaces, remove unprintable characters, replace line breaks with spaces if the target is a single-line textbox) before executing the paste operation.One might assume that Text0.SetFocus is part of the problem, but it isn’t. It just helps to demonstrate the issue. If you remove it, Access will try to paste the text on the button in Form1 instead of the text box in Form2.
Setup 1. Create a new database. 2. Create a new module with the following content: Function myPaste()
DoCmd.RunCommand acCmdPaste
End Function and save it as “Module1”. 3. Create a new macro with the following content: Submacro: ^b
RunCode =myPaste() and save it as “AutoKeys”. 4. Create a new Form with- a text box “Text0” and- a button “myButton”and save it as “Form1”. 5. Add two event handlers ([Event Procedure]) to myButton with the following code: Private Sub myButton_Click()
Text0.SetFocus
DoCmd.OpenForm “Form2”
End Sub
Private Sub myButton_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
‘ Deliberately empty
End Sub 6. Create a new Form with- a text box “Text0″and save it as “Form2”. Repro Copy text into the clipboard (for example, the word “test”).Open Form1.Click on the button. Don’t do anything after clicking the button. In particular, do not move the mouse for a few seconds (so that it still hovers over the space where the button was while the new form opens).Hit Ctrl-b Expected result Text0 in Form2 now contains the content of the clipboard. Actual result Text0 in Form1 now contains the content of the clipboard. Notes This bug is more of a curiosity than a real problem. It can be reproduced with the current channel of Microsoft 365 (v2409, 18025.20160) and with various older versions of 365, but not with Access 2007, so it was probably introduced at some time during the last 17 years. There are more important bugs to fix in Access, so it’s probably not worth investing more time in it, but I still felt the need to document this issue.On workaround to prevent the bug from happening is to add an (empty) KeyDown handler to either Text0 in Form2 or, after enabling Key Preview, to Form2 itself.The MouseMove event handler on the button is required to reproduce the bug.We discovered this issue because our applications use a “Ctrl-v” AutoKey that sanitizes the clipboard (replace tabs with spaces, remove unprintable characters, replace line breaks with spaces if the target is a single-line textbox) before executing the paste operation.One might assume that Text0.SetFocus is part of the problem, but it isn’t. It just helps to demonstrate the issue. If you remove it, Access will try to paste the text on the button in Form1 instead of the text box in Form2. Read More
Unable to select files from my desktop to add as attachments to Outlook email, through web app (macb
Suddenly I am unable to see anything on my desktop when trying to select a file to attach to an email. (see screen grab–no option for desktop). I can drag and drop the file just fine but that is more cumbersome. I have restarted my macbook and Outlook.
Suddenly I am unable to see anything on my desktop when trying to select a file to attach to an email. (see screen grab–no option for desktop). I can drag and drop the file just fine but that is more cumbersome. I have restarted my macbook and Outlook. Read More
ANY HELP APPRECIATED, MULTIPLE QUESTIONS
This will be a lot, if you can answer any of my questions please do. The spreadsheet I’m referring to is in the files section below. (this will be multiple parts, as there seem to be too many characters)
Question 1- I have no idea where to even start with this, but I have different types of math formulas on the same spreadsheet (synthetic division, factor finding, and quadratic formula). Still, I need the answers for one math formula (factor finding) to find the numbers I need for the other two formulas (synthetic division and quadratic formula) which are not related at all, meaning I need different factors for each formula, but only have one factor finding section t the moment. I am trying to have the spreadsheet perform the necessary formulas as automatically as possible, so I have the numbers needed to find the necessary factors for the quadratic formula, but not for the synthetic division. Best case scenario, I want to be able to have both formulas automatically input the numbers into the factor finding section, but obviously this creates conflicting formulas and many errors. I’m thinking something akin to a button/on-off switch that determines which function’s numbers are being inserted into the function-finding section, but I have no idea if that is even possible. If not, refer to question 2.
Question 2- If question 1 isn’t possible, I want to repeat the formula in cell O3, =LET(Num, N2, All, SEQUENCE(Num), Factors, FILTER(All, MOD(Num, All)=0), Factors), that I found at https://techcommunity.microsoft.com/t5/excel/need-help-with-a-function-formula-in-excel-to-determine-the/m-p/3865190/thread-id/196954, in cell I2, but have the resulting numbers display differently. Specifically, instead of displaying them below each other, as seen in column O, have them displayed left to right, top to bottom in cells I2:K8.
Question 3- Is there a way to automatically insert numbers from a list (I2:K8) into a cell (A1) until a different cell equals a certain number (G3=0)? This would be great on its own, but if I could also have Excel perform complete synthetic division (eg. automatically inserting numbers from a list (as said above) then inserting certain numbers (the numbers in B3:G3) into a different area (B1:G1) and repeating the formula until there are no numbers left? Along with automatically inserting the last number in B1:G1 into J1 to perform the formula mentioned in question 2?)
Any help at all would be amazing, but I know it’s a lot to read and answer. This isn’t super urgent, I just like making Excel calculators and this would help a ton for school. Any other mistakes you notice or ways I could make anything in the sheet more efficient, don’t hesitate to let me know!
This will be a lot, if you can answer any of my questions please do. The spreadsheet I’m referring to is in the files section below. (this will be multiple parts, as there seem to be too many characters) Question 1- I have no idea where to even start with this, but I have different types of math formulas on the same spreadsheet (synthetic division, factor finding, and quadratic formula). Still, I need the answers for one math formula (factor finding) to find the numbers I need for the other two formulas (synthetic division and quadratic formula) which are not related at all, meaning I need different factors for each formula, but only have one factor finding section t the moment. I am trying to have the spreadsheet perform the necessary formulas as automatically as possible, so I have the numbers needed to find the necessary factors for the quadratic formula, but not for the synthetic division. Best case scenario, I want to be able to have both formulas automatically input the numbers into the factor finding section, but obviously this creates conflicting formulas and many errors. I’m thinking something akin to a button/on-off switch that determines which function’s numbers are being inserted into the function-finding section, but I have no idea if that is even possible. If not, refer to question 2. Question 2- If question 1 isn’t possible, I want to repeat the formula in cell O3, =LET(Num, N2, All, SEQUENCE(Num), Factors, FILTER(All, MOD(Num, All)=0), Factors), that I found at https://techcommunity.microsoft.com/t5/excel/need-help-with-a-function-formula-in-excel-to-determine-the/m-p/3865190/thread-id/196954, in cell I2, but have the resulting numbers display differently. Specifically, instead of displaying them below each other, as seen in column O, have them displayed left to right, top to bottom in cells I2:K8. Question 3- Is there a way to automatically insert numbers from a list (I2:K8) into a cell (A1) until a different cell equals a certain number (G3=0)? This would be great on its own, but if I could also have Excel perform complete synthetic division (eg. automatically inserting numbers from a list (as said above) then inserting certain numbers (the numbers in B3:G3) into a different area (B1:G1) and repeating the formula until there are no numbers left? Along with automatically inserting the last number in B1:G1 into J1 to perform the formula mentioned in question 2?) Any help at all would be amazing, but I know it’s a lot to read and answer. This isn’t super urgent, I just like making Excel calculators and this would help a ton for school. Any other mistakes you notice or ways I could make anything in the sheet more efficient, don’t hesitate to let me know! Read More
MVP Tech Gathering Station: A Platform to Spark Your Dreams
In the ever-changing world of technology, learning is not just about accumulating knowledge, it’s a journey filled with passion and growth. This journey has been ignited by Microsoft Most Valuable Professionals (MVPs)and a MVP Tech Gathering Station is a stage for tech enthusiasts, developers, and future leaders to quickly grasp cutting-edge technologies and explore the unknown possibilities. Here, participants not only receive professional course instruction and hands-on experience, but they also find a place where dreams take flight.
Over the past year, MVP Tech Gathering Station has hosted 47 events, attracting over 64,000 real-time viewers in one single social media platform with 50+MVPs and 20+ MLSAs. Livestreamed . Livestreamed via platforms like Reactor WeChat account, CSDN, Bilibili, SegmentFault, and YouTube, it has reached tech communities across mainland China and Taiwan. The whole series covers key themes such as Generative AI, Low-code AI, Real-world AI Scenarios, and .Net C#, with a total of 47 different knowledge points.
But the story of MVP Tech Gathering Station goes beyond numbers. Behind every event is dedication and hard work, as well as the genuine experiences of students, MVPs, and audiences. It’s a journey where technology meets practice, and the stories of growth are truly inspiring.
Student Testimonials: Growth and Confidence Building
For many students, MVP Tech Gathering Station is not just a place to learn technology but also a platform to build confidence and grow. Especially for Microsoft Learn Student Ambassadors (MLSA), they took part in preparing courses, hosting events, and working alongside MVPs to answer audience questions and showcase their skills.
“Through MVP Tech Gathering Station, I not only improved my technical skills but also learned how to interact with audiences during live streams. It greatly boosted my communication skills and confidence, allowing me to express myself more naturally in public.”
— Boyang Yu Gold MSLA
“Collaborating with MVPs to prepare events and presenting on Microsoft’s platform has been a source of immense pride for me. This experience not only enhanced my technical skills but also honed my project management and teamwork abilities.”
— Timmy Wen Gold MSLA
“MVP Tech Gathering Station gave me the opportunity to engage with real-world enterprise applications, broadening my perspective. Presenting results in front of so many viewers filled me with confidence about my future.”
— Boyao Song Beta MSLA
MVP Testimonials: Witnessing the Power of the Next Generation
For MVPs, Skill Tech Gather Station is not only provide opportunity to share technology—but also a platform to mentor and witness the growth of the next generation of tech talent. They have seen firsthand progress in students’ technical and communication abilities, fueling their optimism for the future.
“I was deeply gratified to see the performance of these students. They have made tremendous strides, not only in technology but also in communication and adaptability. They are the future tech leaders, and I have great confidence in them.”
— Marry WANG M365 MVP
“Working with students to prepare and host events showed me their limitless potential. They’re not just recipients of technology but the innovators who will shape the future.”
— Jiong SHI AI MVP
Audience Testimonials: A Perfect Blend of Theory and Practice
Audiences also gave high praise to MVP Tech Gathering Station, especially for courses in Generative AI and C#. The feedback was overwhelmingly positive, with viewers appreciating both cutting-edge technology and the insights into real-world applications.
“The content was very comprehensive, with excellent explanations from theory to practice. The practical applications of Generative AI really opened my eyes, and I learned a lot.”
— Developer Audience
“A big thank you to the MVPs and MLSAs for their brilliant courses. It felt like opening the door to a new world. These technologies are not out of reach; they are skills that can be learned step by step through MVP Tech Gathering Station.”
— Developer Audience
“The events didn’t just focus on tech sharing but also tied closely with real life and work. This ‘theory + practice’ format has been incredibly beneficial to me.”
— Loyal MVP Tech Gathering Station Audience
The Power and Warmth of the Tech Community
MVP Tech Gathering Station is not just a platform for sharing technology, it’s a community, a warm and supportive community. Here, students build confidence and learn communication through collaboration with MVPs, MVPs witness the growth of the next generation, and audiences gain valuable knowledge and inspiration from every event.
This initiative, created by the Greater China (GCR) MVP Program Team, has successfully promoted Microsoft technology in the market and deepened the interaction between MVPs and MLSAs. The success of the event owes much to CA Kinfey Lo’s content planning support, as well as the Reactor Shanghai Team’s efforts in livestreaming and marketing. Additionally, the technical support, design, and coordination teams played an essential role in ensuring every event ran smoothly. It is this cross-departmental, cross-functional collaboration that has infused MVP Tech Gathering Station with both strength and warmth, leading to its resounding success.
Team spirit has always been the foundation of our success. In the future, we will continue to uphold this spirit, embracing new challenges and opportunities. MVP Tech Gathering Station will keep delivering valuable content and opportunities for tech enthusiasts, helping them thrive in an ever-changing tech landscape.
Microsoft Tech Community – Latest Blogs –Read More
The disk/partion is no more availabe-IS NOT OPENING
Hello. I have a partion with BitLoker and recently after an window update the partion is no more availabe and wil not open. And i don’t understand what is with that Disk 0(part 1,2,7). I didn’t create something like this when i instaled win 2 years ago.
What can i do ?
Thanks
Hello. I have a partion with BitLoker and recently after an window update the partion is no more availabe and wil not open. And i don’t understand what is with that Disk 0(part 1,2,7). I didn’t create something like this when i instaled win 2 years ago.What can i do ?Thanks Read More
Is there any way to checkout a specific part of a Azure branch
We are committing our code to Azure Repos and building artifacts using Azure Classic Build Pipelines. But During the Checkout, it is downloading the entire repository and consuming lots of space and time.
Is there any way to checkout a specific part of a branch that includes only the required build files.
We are committing our code to Azure Repos and building artifacts using Azure Classic Build Pipelines. But During the Checkout, it is downloading the entire repository and consuming lots of space and time. Is there any way to checkout a specific part of a branch that includes only the required build files. Read More
Graphical issues in desktop versions (Windows App and Remote Desktop.msi application) but not in web
Hello guys.
We have an old application running on machine. This machine get’s accessed through AVD, and then through RDP it connects to the machine running the old application.
When using the desktop app it shows graphical glitches, numbers being jumbled up.
When using the webversion there are no such issues. Any suggestions?
Hello guys. We have an old application running on machine. This machine get’s accessed through AVD, and then through RDP it connects to the machine running the old application. When using the desktop app it shows graphical glitches, numbers being jumbled up.When using the webversion there are no such issues. Any suggestions? Read More
Planner & SharePoint & Power Apps
Is there a way to integrate Planner into SharePoint or PowerApps?
I’d like to be able to assign tasks with due dates to people via planner in PowerApps.
Is there a way to integrate Planner into SharePoint or PowerApps? I’d like to be able to assign tasks with due dates to people via planner in PowerApps. Read More
Issue with Debugging Event Receiver in SharePoint Subscription Edition
Hello everyone,
I’m currently facing an issue while debugging an event receiver in SharePoint Subscription Edition. Specifically, when I attach to the w3wp process, I encounter a System.NullReferenceException in the ControlBuilder.cs file.
Here’s the relevant code snippet:
/// <summary>Creates the <see cref=”T:System.Web.UI.ObjectPersistData” /> object for this <see cref=”T:System.Web.UI.ControlBuilder” /> object.</summary>
/// <returns>The <see cref=”T:System.Web.UI.ObjectPersistData” /> for this <see cref=”T:System.Web.UI.ControlBuilder” />.</returns>
public ObjectPersistData GetObjectPersistData()
{
return new ObjectPersistData(this, Parser.RootBuilder.BuiltObjects);
}
Since this is not code I’ve written, I’m not sure why this exception is occurring. Has anyone else encountered this issue, or could someone provide insight into potential causes and solutions?
Thank you for your help!
Hello everyone,I’m currently facing an issue while debugging an event receiver in SharePoint Subscription Edition. Specifically, when I attach to the w3wp process, I encounter a System.NullReferenceException in the ControlBuilder.cs file. Here’s the relevant code snippet: /// <summary>Creates the <see cref=”T:System.Web.UI.ObjectPersistData” /> object for this <see cref=”T:System.Web.UI.ControlBuilder” /> object.</summary>
/// <returns>The <see cref=”T:System.Web.UI.ObjectPersistData” /> for this <see cref=”T:System.Web.UI.ControlBuilder” />.</returns>
public ObjectPersistData GetObjectPersistData()
{
return new ObjectPersistData(this, Parser.RootBuilder.BuiltObjects);
} Since this is not code I’ve written, I’m not sure why this exception is occurring. Has anyone else encountered this issue, or could someone provide insight into potential causes and solutions? Thank you for your help! Read More
Windows 365 enterprise provisioning Fails.
Hi everyone,
I’m trying to set up Windows 365 Enterprise provisioning, but I’m getting the error below even though I have a Microsoft Intune Suite license.
Is there anyone who can guide me on what to do next?
Hi everyone,I’m trying to set up Windows 365 Enterprise provisioning, but I’m getting the error below even though I have a Microsoft Intune Suite license.Is there anyone who can guide me on what to do next? Read More
Entra Groups and managing Access to Teams or Town Hall
Wouldn’t it be great if there was a way to grant access to a Teams or Town Hall meeting using an Entra ID Group without inviting all the users in the Group? This way you could send the meeting link to users in the Group as needed. For large organizations with many external partners managed in Entra, this would be very beneficial. This can be done already with the meeting recordings in Stream via the Share button.
Wouldn’t it be great if there was a way to grant access to a Teams or Town Hall meeting using an Entra ID Group without inviting all the users in the Group? This way you could send the meeting link to users in the Group as needed. For large organizations with many external partners managed in Entra, this would be very beneficial. This can be done already with the meeting recordings in Stream via the Share button. Read More
DLP policy is detecting fake BSN-numbers as well
I want to create a DLP-policy which blocks BSN-numbers, but the policy also seems to block fake/example BSN-numbers. Is there a way to exclude these fake numbers?
I want to create a DLP-policy which blocks BSN-numbers, but the policy also seems to block fake/example BSN-numbers. Is there a way to exclude these fake numbers? Read More
Using universal print with industrial label printer ?
Hello,
I am working on a project with a client where I need to print a label from azure data factory to an industrial label printer. We are thinking about using print universal to do so.
The printer is a DATAMAX Oneil Mark III that is not connected in network but connected at a PC, so not directly accessible.
Is it possible to use Print Universal with this printer as it’s not within the list of recommended printers ?
Can we use print universal with a industrial label printer ? If not what printer would you recommend ?
Thank you for you help,
Marion
Hello, I am working on a project with a client where I need to print a label from azure data factory to an industrial label printer. We are thinking about using print universal to do so.The printer is a DATAMAX Oneil Mark III that is not connected in network but connected at a PC, so not directly accessible. Is it possible to use Print Universal with this printer as it’s not within the list of recommended printers ?Can we use print universal with a industrial label printer ? If not what printer would you recommend ? Thank you for you help, Marion Read More
copilot age verification
I contacted Microsoft support and they didn’t manage to help me when I verify my age copilot still doesn’t work
I contacted Microsoft support and they didn’t manage to help me when I verify my age copilot still doesn’t work Read More
MS Graph API: Presence outOfOfficeSettings from beta to 1.0
Hi everybody,
in the MS Graph REST API beta the ‘Presence’ resource type has the property “outOfOfficeSettings” since January 8, 2021.
See:
https://learn.microsoft.com/en-us/graph/api/resources/presence?view=graph-rest-beta
https://developer.microsoft.com/en-us/graph/changelog/?search=outOfOfficeSettings
When can we expect this property in the MS Graph REST API 1.0?
Regards
Gerd
Hi everybody, in the MS Graph REST API beta the ‘Presence’ resource type has the property “outOfOfficeSettings” since January 8, 2021. See: https://learn.microsoft.com/en-us/graph/api/resources/presence?view=graph-rest-betahttps://developer.microsoft.com/en-us/graph/changelog/?search=outOfOfficeSettingsWhen can we expect this property in the MS Graph REST API 1.0?RegardsGerd Read More
Column in Common Data Model source always returning null values in ADF
I have a pipeline in ADF where I am fetching data from a Common Data Model (CDM) and this pipeline has been working fine for a long time. We updated one of the Entities in the CDM with a new column of type string which I am now trying to fetch. When I import the new schema into ADF Source I find the new column but all data fetched for that column only returns null.
I have confirmed the following:
All other columns are working as before and returns data. The CSV file referred to by the CDM has values that are not null in the new column, so data exists.Data type in the schema matches the data type specified in the CDM for the new column (string)
Does anyone have an idea of what could be the issue?
I saw this post with similar issue but the data type in that case is date: https://learn.microsoft.com/en-us/answers/questions/942876/column-is-always-getting-null-values-in-adf-data-f
I have a pipeline in ADF where I am fetching data from a Common Data Model (CDM) and this pipeline has been working fine for a long time. We updated one of the Entities in the CDM with a new column of type string which I am now trying to fetch. When I import the new schema into ADF Source I find the new column but all data fetched for that column only returns null. I have confirmed the following:All other columns are working as before and returns data. The CSV file referred to by the CDM has values that are not null in the new column, so data exists.Data type in the schema matches the data type specified in the CDM for the new column (string)Does anyone have an idea of what could be the issue? I saw this post with similar issue but the data type in that case is date: https://learn.microsoft.com/en-us/answers/questions/942876/column-is-always-getting-null-values-in-adf-data-f Read More