Category: Microsoft
Category Archives: Microsoft
Ownership personal planboard
Hi,
With the new planner, a user can create and manage a personal planboard. This planboard can be shared with an existing team (group), giving all team members access to it.
Q1: When the user leaves the organization and the user account is terminated, will the plan remain available while the owner is no longer active, and can the plan be deleted without the initial owner?
Q2: Sharing can be done with an existing Teams group or by creating a new group. Most organizations do not allow users to create new separate groups. Is sharing with individuals coming soon? Currently, the options are to share with a complete group or not at all. If not, users will be urged to create a new team to share a planboard.
Hi,With the new planner, a user can create and manage a personal planboard. This planboard can be shared with an existing team (group), giving all team members access to it.Q1: When the user leaves the organization and the user account is terminated, will the plan remain available while the owner is no longer active, and can the plan be deleted without the initial owner?Q2: Sharing can be done with an existing Teams group or by creating a new group. Most organizations do not allow users to create new separate groups. Is sharing with individuals coming soon? Currently, the options are to share with a complete group or not at all. If not, users will be urged to create a new team to share a planboard. Read More
Build AI with Python and Azure CosmosDB
Hey everyone! I’m Shivam Goyal, and Chanchal Kuntal , a Microsoft Learn Student Ambassador, fascinated by the incredible ways technology is changing the world. I’m especially excited about the potential of AI, which can unlock the power of information to solve complex problems and make our lives easier.
Today, we’re going to explore a powerful combination: Azure Cosmos DB and Python. This duo can help you build innovative, data-driven AI applications!
Why Choose Python?
Python has become the go-to language for data-driven applications for several reasons:
Versatility: Python isn’t limited to a single domain. It thrives in web development, data science, machine learning, scripting, and more. This makes it a valuable skill for any tech-focused individual.
Easy to Learn: Python prioritizes readability, making it easier for beginners to grasp its syntax compared to other languages.
Powerful Libraries: Python’s extensive ecosystem boasts libraries like Pandas, NumPy, and Matplotlib, making data manipulation, analysis, and visualization a breeze.
High Demand: Companies across industries are actively seeking Python developers. Mastering this language opens doors to exciting career opportunities.
The Rise of NoSQL and Azure CosmosDB:
Traditional relational databases have long been the standard. However, the need for flexibility, scalability, and agility has fueled the rise of NoSQL databases.
Azure Cosmos DB is a fully managed NoSQL database service that offers several advantages:
Flexibility: CosmosDB adapts to your needs, allowing you to store data in JSON, SQL, or other formats, giving you the freedom to choose the best approach for your data.
Scalability: You can effortlessly expand your database as your needs grow, without sacrificing performance.
Global Distribution: Deploy your database across the globe for low latency access, perfect for applications that require data availability across diverse regions.
Seamless Integration with Python: CosmosDB plays nicely with Python, making it straightforward to connect, query, and manipulate data.
Let’s take a look at the basic structure of an Azure Cosmos DB account to understand how it organizes data.
Account: The top-level container that holds your Cosmos DB resources.
Databases: Logical groupings of containers within your account.
Containers: Hold your actual data, similar to tables in a relational database.
Items: The individual data records (documents) within your containers.
Let’s Get Practical: Exploring the Sample Notebooks
To make this all concrete, let’s dive into the Azure CosmosDB for NoSQL Samples.
Getting Started:
Fork the Repository: Head over to the GitHub repo and click “Fork” to create your own copy of the samples. This allows you to experiment without affecting the original.
Clone Your Fork: Use Git to clone your forked repository to your local machine. This is the base for your development.
Set Up Your Environment: The setup notebook shows you how to install the necessary libraries and get connected to Azure Cosmos DB.
Important Note: Enable the vector search feature in CosmosDB for certain AI-powered applications. Deploy CosmosDB using provisioned throughput instead of serverless for optimal performance with these sample projects.
Before diving into specific use cases, let’s visualize how Azure Cosmos DB fits within a broader data ecosystem and how it can be used to power a variety of AI applications
Use Cases and What You’ll Learn:
Use Case
Description
Notebook Example
Key Takeaways
Building a Simple Chatbot
Create a basic chatbot that leverages CosmosDB for storing and retrieving conversational data.
The sample shows how to use the CosmosClient to interact with a database, create a container, and insert, retrieve, and query data. It demonstrates the concept of persisting chat interactions within CosmosDB, setting the stage for more complex chatbot development.
Analyzing User Feedback
Store and process user feedback data from a website or application to gain insights and identify trends.
This sample effectively showcases how to query CosmosDB based on specific criteria and calculate metrics using Python. It emphasizes the importance of using data analysis for informed decision-making.
Building a Recommendation Engine
Create a system that recommends products, content, or services based on user preferences and past interactions.
The recommendation engine sample demonstrates how to store user data and preferences in CosmosDB. While it uses simple recommendation logic, it clearly shows the potential for building more complex recommender systems.
Ready to Dive Deeper?
Get Hands-on with Azure:
Microsoft Azure Fundamentals: Describe cloud concepts – Training | Microsoft Learn
GitHub – Azure-Samples/azure-cosmos-db-python-getting-started
Azure Cosmos DB | Microsoft Learn
Introduction to NoSQL databases
Quickstart – Python client library – Azure Cosmos DB for NoSQL | Microsoft Learn
Get started with Azure Cosmos DB for NoSQL using Python | Microsoft Learn
Build an AI-Powered Chatbot with LlamaIndex and Azure: Step-by-Step Guide
In Conclusion:
The combination of Python and Azure Cosmos DB for NoSQL provides a powerful foundation for building AI applications that can leverage your data in exciting and innovative ways. Take the leap, explore the samples, and discover the world of possibilities that awaits!
Found this useful? Share it with others.
Microsoft Tech Community – Latest Blogs –Read More
This Month in Azure Static Web Apps | 07/2024
Welcome to the first edition of the Azure Static Web Apps Community! Every month, we’ll be sharing content created by the Technical Community, whether it’s articles, videos, or podcasts talking about Azure Static Web Apps.
Want to have your content featured on the TechCommunity in #ThisMonthInAzureStaticWebApps? Here’s how!
Create an article, video, podcast, or even an Open Source project that talks about or is related to Azure Static Web Apps.
Share your content on Twitter, LinkedIn, or Instagram using the hashtag #AzureStaticWebApps.
Also, share it in our official Azure Static Web Apps GitHub repository, under the Discussions tab. You’ll find a topic called This Month In Azure Static Web Apps. Share your content link there according to the month you’d like it to be featured.
Done! We’ll share your content on the Microsoft TechCommunity next month!
No matter what language you write in—whether it’s Portuguese, English, Spanish, French, German, or any other—we want to share your content!
If you’re using Azure Static Web Apps with another service or technology, feel free to share your content as well. It doesn’t matter what programming language you’re using. Whether it’s JavaScript, TypeScript, Python, Java, C#, Go, Rust, or others, we want to share your content!
One more thing: you don’t need to be an expert in Azure Static Web Apps to share your content. If you’re learning about the service and want to share your journey, feel free to do so!
Now, let’s dive into the content from July!
A Big Thank You!
Before we start sharing the content, we’d like to thank everyone who shared their work in July! You all are amazing!
Shared Content | July 2024
Let’s get into the content shared in July 2024!
Adding an API to an Azure hosted React Static Web App
Author: Janek Fellien
This article explains how to add an API to an Azure-hosted React Static Web App, setting up a development environment with SWA CLI and VS Code, creating an HTTP function in C#, and integrating the API with the React app to display data on the site.
Want to learn how to connect your React app to an API on Azure? Read the full article and find out how to add dynamic features to your project.
Link: Adding an API to an Azure hosted React Static Web App
Hosting Next.JS Static Websites on Azure Static Web App
Author: Parveen Singh
This article explains how to host static websites built with Next.js using Azure Static Web Apps, covering everything from setting up the GitHub repository to continuous deployment on Azure. It’s an ideal solution for developers looking for simplicity, security, and scalability in their websites.
Want to learn how to host your Next.js site simply and efficiently on Azure? Read the full article and discover how to leverage the features of Azure Static Web Apps!
Link: Hosting Next.JS Static Websites on Azure Static Web App
How to Deploy a React PWA to Azure Static Web Apps
Author: Petkir
This article teaches you how to deploy and automate the deployment process of a React PWA to Azure Static Web Apps using GitHub Actions and Azure DevOps, while also generating the necessary resources with Bicep.
Want to learn how to streamline the deployment of your React PWA apps? Read the full article and find out how to automate everything using GitHub Actions and Azure DevOps!
Link: How to Deploy a React PWA to Azure Static Web Apps
Azure Static Web App: Seamless Microsoft Entra (Azure AD) Integration with Angular
This video teaches how to integrate Microsoft Entra (Azure AD) with an Azure Static Web App using Angular, including SSO configuration, app registration, and displaying user information.
Want to learn how to integrate authentication with Microsoft Entra into your Angular apps? Watch now and master this essential integration for a unified login experience!
Link: Azure Static Web App: Seamless Microsoft Entra (Azure AD) Integration with Angular
Trimble Connect Workspace API 007 – Deployment
Author: LetsConstructIT YouTube Channel
This video demonstrates how to deploy a local app to the cloud using Azure Static Web Apps, making it accessible on the web and integrated with Trimble Connect, including setting up custom extensions.
Want to learn how to deploy your apps to the cloud simply and integrate with Trimble Connect? Watch the full video and find out how!
Link: Trimble Connect Workspace API 007 – Deployment
Blazor WASM Publishing to Azure Static Web Apps
Authors: Abdul Rahman | Regina Sharon
This article teaches you how to publish Blazor WebAssembly (WASM) apps to Azure Static Web Apps, covering everything from initial project setup to troubleshooting common issues like 404 errors on page refreshes. It also explains how to customize the build process and configure custom domains.
Want to learn how to publish your Blazor WASM apps to Azure simply and effectively? Read the full article and find out how to set everything up step by step, ensuring your app runs perfectly!
Link: Blazor WASM Publishing to Azure Static Web Apps
Azure Static Web Apps Community Standup: Create a RAG App with App Spaces
Authors: Skyler Hartle | Dheeraj Bandaru
This video introduces App Spaces, a new Azure tool that simplifies the creation and management of smart applications, especially when integrating Azure Static Web Apps and Azure Container Apps. During the session, they demonstrate how to create and deploy a Retrieval-Augmented Generation (RAG) app using a simple interface that connects GitHub repositories and automates the CI/CD process.
Discover how to simplify building smart apps with Azure App Spaces! Watch the full video and learn how to deploy a RAG app in minutes. Don’t miss this opportunity to elevate your cloud development skills!
Link: Azure Static Web Apps Community Standup: Create a RAG App with App Spaces
Serverless Single Page Application (Vue.js) mit Azure Static Web Apps
Author: Florian Lenz
Language: German
This article shows how to create and deploy a single-page application (SPA) using Vue.js and Azure Static Web Apps. It guides the reader from project creation to adding a serverless backend with Azure Functions, highlighting the ease of use and benefits of the serverless model for full-stack applications.
Want to learn how to deploy your Vue.js app to the cloud with Azure Static Web Apps and take advantage of serverless benefits? Read the full article and find out how to create and manage a full-stack app simply and efficiently!
Link: Serverless Single Page Application (Vue.js) mit Azure Static Web Apps
Conclusion
If you want to be featured in next month’s #ThisMonthInAzureStaticWebApps article, share your content on social media with the hashtag #AzureStaticWebApps and also in our official GitHub repository. We’re excited to share your content next month!
Remember, you don’t need to be an expert in Azure Static Web Apps to share your content. If you’re learning about the service and want to share your journey, feel free to do so!
See you in the next edition!
Microsoft Tech Community – Latest Blogs –Read More
百家乐客服【微QGY889889】
SQL Server 是一个关系数据库管理系统。它最初是由Microsoft Sybase 和Ashton-Tate三家公司共同开发的,于
Microsoft SQL Server
Microsoft SQL Server
1988 年推出了第一个OS/2 版本。在Windows NT 推出后,Microsoft与Sybase 在SQL Server 的开发上就分道扬镳了,Microsoft 将SQL Server 移植到Windows NT系统上,专注于开发推广SQL Server 的Windows NT 版本。Sybase 则较专注于SQL Server在UNIX 操作系统上的应用。
SQL Server 2000 是Microsoft 公司推出的SQL Server 数据库管理系统,该版本继承了SQL Server 7.0 版本的优点,同时又比它增加了许多更先进的功能。具有使用方便可伸缩性好与相关软件集成程度高等优点,可跨越从运行Microsoft Windows 98 的膝上型电脑到运行Microsoft Windows 2000 的大型多处理器的服务器等多种平台使用。
SQL Server 2005
SQL Server 2005 是一个全面的数据库平台,使用集成的商业智能 (BI) 工具提供了企业级的数据管理。SQL Server 2005 数据库引擎为关系型数据和结构化数据提供了更安全可靠的存储功能,使您可以构建和管理用于业务的高可用和高性能的数据应用程序。
SQL Server 2005 数据引擎是本企业数据管理解决方案的核心。此外 SQL Server 2005 结合了分析、报表、集成和通知功能。这使您的企业可以构建和部署经济有效的 BI 解决方案,帮助您的团队通过记分卡、Dashboard、Web services 和移动设备将数据应用推向业务的各个领域。
与 Microsoft Visual Studio、Microsoft Office System 以及新的开发工具包(包括 Business Intelligence Development Studio)的紧密集成使 SQL Server 2005 与众不同。无论您是开发人员、数据库管理员、信息工作者还是决策者,SQL Server 2005 都可以为您提供创新的解决方案,帮助您从数据中更多地获益。
SQL Server 2008
SQL Server 2008是一个重大的产品版本,它推出了许多新的特性和关键的改进,使得它成为至今为止的最强大
和最全面的SQL Server版本。这篇文章详细介绍了Microsoft SQL Server 2008中的新的特性、优点和功能。
微软的这个数据平台满足这些数据爆炸和下一代数据驱动应用程序的需求,支持数据平台愿景:关键任务企业数据平台、动态开发、关系数据和商业智能。
SQL Server的愿景
许多因素致使产生了信息存储爆炸。有了新的信息类型,例如图片和视频的数字化,和从RFID标签获得的传感器信息,公司的数字信息的数量在急剧增长。遵守规范和全球化的发展要求信息存储的安全性和在任何时候都可用。同时,磁盘存储的成本显著地降低了,使得公司投资的每一美元可以存储更多的数据。用户必须快速的在大量的数据中找到相关的信息。此外,他们想在任何设备上使用这个信息,并且计划每天使用,例如Microsoft Office系统应用程序。对数据爆炸和用户期望值的增加的管理为公司制造了许多挑战。
Microsoft 数据平台愿景提供了一个解决方案来满足这些需求,这个解决方案就是公司可以使用存储和管理许多数据类型,包括XML、e-mail、时间/日历、文件、文档、地理等等,同时提供一个丰富的服务集合来与数据交互作用:搜索、查询、数据分析、报表、数据整合,和强大的同步功能。用户可以访问从创建到存档于任何设备的信息,从桌面到移动设备的信息
SQL Server 是一个关系数据库管理系统。它最初是由Microsoft Sybase 和Ashton-Tate三家公司共同开发的,于Microsoft SQL ServerMicrosoft SQL Server1988 年推出了第一个OS/2 版本。在Windows NT 推出后,Microsoft与Sybase 在SQL Server 的开发上就分道扬镳了,Microsoft 将SQL Server 移植到Windows NT系统上,专注于开发推广SQL Server 的Windows NT 版本。Sybase 则较专注于SQL Server在UNIX 操作系统上的应用。SQL Server 2000 是Microsoft 公司推出的SQL Server 数据库管理系统,该版本继承了SQL Server 7.0 版本的优点,同时又比它增加了许多更先进的功能。具有使用方便可伸缩性好与相关软件集成程度高等优点,可跨越从运行Microsoft Windows 98 的膝上型电脑到运行Microsoft Windows 2000 的大型多处理器的服务器等多种平台使用。 SQL Server 2005SQL Server 2005 是一个全面的数据库平台,使用集成的商业智能 (BI) 工具提供了企业级的数据管理。SQL Server 2005 数据库引擎为关系型数据和结构化数据提供了更安全可靠的存储功能,使您可以构建和管理用于业务的高可用和高性能的数据应用程序。SQL Server 2005 数据引擎是本企业数据管理解决方案的核心。此外 SQL Server 2005 结合了分析、报表、集成和通知功能。这使您的企业可以构建和部署经济有效的 BI 解决方案,帮助您的团队通过记分卡、Dashboard、Web services 和移动设备将数据应用推向业务的各个领域。与 Microsoft Visual Studio、Microsoft Office System 以及新的开发工具包(包括 Business Intelligence Development Studio)的紧密集成使 SQL Server 2005 与众不同。无论您是开发人员、数据库管理员、信息工作者还是决策者,SQL Server 2005 都可以为您提供创新的解决方案,帮助您从数据中更多地获益。SQL Server 2008SQL Server 2008是一个重大的产品版本,它推出了许多新的特性和关键的改进,使得它成为至今为止的最强大和最全面的SQL Server版本。这篇文章详细介绍了Microsoft SQL Server 2008中的新的特性、优点和功能。微软的这个数据平台满足这些数据爆炸和下一代数据驱动应用程序的需求,支持数据平台愿景:关键任务企业数据平台、动态开发、关系数据和商业智能。SQL Server的愿景许多因素致使产生了信息存储爆炸。有了新的信息类型,例如图片和视频的数字化,和从RFID标签获得的传感器信息,公司的数字信息的数量在急剧增长。遵守规范和全球化的发展要求信息存储的安全性和在任何时候都可用。同时,磁盘存储的成本显著地降低了,使得公司投资的每一美元可以存储更多的数据。用户必须快速的在大量的数据中找到相关的信息。此外,他们想在任何设备上使用这个信息,并且计划每天使用,例如Microsoft Office系统应用程序。对数据爆炸和用户期望值的增加的管理为公司制造了许多挑战。Microsoft 数据平台愿景提供了一个解决方案来满足这些需求,这个解决方案就是公司可以使用存储和管理许多数据类型,包括XML、e-mail、时间/日历、文件、文档、地理等等,同时提供一个丰富的服务集合来与数据交互作用:搜索、查询、数据分析、报表、数据整合,和强大的同步功能。用户可以访问从创建到存档于任何设备的信息,从桌面到移动设备的信息 Read More
How can the member in chat meeting join the old meeting without wait organizer admit.
Hello,
I’ve created the meeting which need to access everyday with 30-40 members, for 2-3 years.
We always use the said room for discuss any topics in chat, when we need to have an meeting we will access the said old room by click”Join”, then everyone can join.
But, for currently when all members in the said chat room click “Join” the meeting, they have to wait the organizer to admit them from the lobby then can access into the meeting room.
How can the organizer assign all members can access to join the meeting without admit?
Hello, I’ve created the meeting which need to access everyday with 30-40 members, for 2-3 years.We always use the said room for discuss any topics in chat, when we need to have an meeting we will access the said old room by click”Join”, then everyone can join. But, for currently when all members in the said chat room click “Join” the meeting, they have to wait the organizer to admit them from the lobby then can access into the meeting room. How can the organizer assign all members can access to join the meeting without admit? Read More
Windows Defender for Application control (WDAC)
Hi All,
I’ve created a basic policy using WDAC console and deployed to Win11 client using Intune App control for business (preview). Policy is deployed successfully. However, i am not able to generate a report whats got block/audited. Do we have Intune or WDAC reports?
Hi All, I’ve created a basic policy using WDAC console and deployed to Win11 client using Intune App control for business (preview). Policy is deployed successfully. However, i am not able to generate a report whats got block/audited. Do we have Intune or WDAC reports? Read More
Help with Tiered Pricing Formula
Hello! I’m looking for assistance with a creating a formula that takes a single value and calculates the cost based on tiered pricing.
Here is the pricing structure:
Units per monthPrice per UnitFirst 0 – 500$0.75Next 501 – 2,500$0.70Next 2,501 – 10,000$0.65Next 10,001 – 25,000$0.60Next 25,001 – 50,000$0.55Next 50,001 – 100,000$0.50Next 100,001 – 250,000$0.45Next 250,001+$0.40
If I have 27,000 units, the total price would be $16,748.05.
Any help would be very much appreciated!
Hello! I’m looking for assistance with a creating a formula that takes a single value and calculates the cost based on tiered pricing.Here is the pricing structure:Units per monthPrice per UnitFirst 0 – 500$0.75Next 501 – 2,500$0.70Next 2,501 – 10,000$0.65Next 10,001 – 25,000$0.60Next 25,001 – 50,000$0.55Next 50,001 – 100,000$0.50Next 100,001 – 250,000$0.45Next 250,001+$0.40 If I have 27,000 units, the total price would be $16,748.05.Any help would be very much appreciated! Read More
Countif not updating
Using some countif formulas for some basic data analysis.
Sheet 1 is the data
Sheet 2 is the overview
Formula for Sheet 2 – =COUNTIF(‘survey-responses-2024-08-21’!G2:G5000,”18-24″)
I have about 200 survey responses however this is ever growing. I want the results to auto update when I copy and paste in new survey responses.
When I copy in new responses Sheet 2 is not updating even though I have data rage showing G2:G5000
Whats the reason my results are not updating?
Mac user
Using some countif formulas for some basic data analysis. Sheet 1 is the data Sheet 2 is the overview Formula for Sheet 2 – =COUNTIF(‘survey-responses-2024-08-21’!G2:G5000,”18-24″) I have about 200 survey responses however this is ever growing. I want the results to auto update when I copy and paste in new survey responses. When I copy in new responses Sheet 2 is not updating even though I have data rage showing G2:G5000 Whats the reason my results are not updating? Mac user Read More
identity verification is pending for more than 12 days
Hello,
I am trying to register my organization in Microsoft Partner.
My Current vetting status of the “identity verification” is pending for more than 12 days.
By #1, we created a request ticket but only got a “ Your question was successfully submitted to Microsoft Support TrackingID” email.
I called in Microsoft support but I cannot reach any person to talk to.
Could anyone give me some guide, please?
thank you
#1 Verify your account information – Partner Center | Microsoft LearnVerification: Verification usually takes 3-5 business days. If more than five days have passed, you can contact support for assistance.
Hello, I am trying to register my organization in Microsoft Partner.My Current vetting status of the “identity verification” is pending for more than 12 days. By #1, we created a request ticket but only got a “ Your question was successfully submitted to Microsoft Support TrackingID” email. I called in Microsoft support but I cannot reach any person to talk to. Could anyone give me some guide, please? thank you #1 Verify your account information – Partner Center | Microsoft LearnVerification: Verification usually takes 3-5 business days. If more than five days have passed, you can contact support for assistance. Read More
Ora source table receives continuous transaction
I have a oracle source table in my ETL which is getting loaded 24/7 continuously, when I run the data load from this table to SQL server using SSIS ETL with table fast load. My package loads some data and it fails. If I stop the oracle source table from getting continuously loaded, my ETL pkg runs fine, I see this in dev env. But in real time on prod I cannot do this, why can’t my pkg load and run with out failing.
One more thing, I have SQL server target table, I pick up the max of last inserted data in SSIS variable and use it for querying incremental load from source oracle table.
Table lock and check constraint in destination(SQL Server) oledb are ticked
I have a oracle source table in my ETL which is getting loaded 24/7 continuously, when I run the data load from this table to SQL server using SSIS ETL with table fast load. My package loads some data and it fails. If I stop the oracle source table from getting continuously loaded, my ETL pkg runs fine, I see this in dev env. But in real time on prod I cannot do this, why can’t my pkg load and run with out failing. One more thing, I have SQL server target table, I pick up the max of last inserted data in SSIS variable and use it for querying incremental load from source oracle table. Table lock and check constraint in destination(SQL Server) oledb are ticked Read More
Excel on Mac – Evolving a Formula
Hi,
I have a question that I’m sure someone out there can answer.
The following formula has worked great, but I need to evolve it: =SUMIFS(‘List of Transactions’!G3:G373,’List of Transactions’!K3:K373,”R”,’List of Transactions’!G3:G373,”>”&0)
Here’s what I need the formula to do, with the functionality I need to add in bold:
Sum the values in Column G IF
Column K is ROR Column I is RAnd the value in Column G is > O
Thanks in advance for your help!
Hi,I have a question that I’m sure someone out there can answer. The following formula has worked great, but I need to evolve it: =SUMIFS(‘List of Transactions’!G3:G373,’List of Transactions’!K3:K373,”R”,’List of Transactions’!G3:G373,”>”&0) Here’s what I need the formula to do, with the functionality I need to add in bold:Sum the values in Column G IFColumn K is ROR Column I is RAnd the value in Column G is > OThanks in advance for your help! Read More
Cumulative Update for Windows 11 Insider Preview (10.0.26120.1542) (KB5041872) Update failing
Trying to update the Windows 11 update but installation does not complete continuously failing and giving an error code Cumulative Update for Windows 11 Insider Preview (10.0.26120.1542) (KB5041872)
Install error – 0x800f081f
Need the steps to fix this issue with the insider preview
Trying to update the Windows 11 update but installation does not complete continuously failing and giving an error code Cumulative Update for Windows 11 Insider Preview (10.0.26120.1542) (KB5041872)Install error – 0x800f081fNeed the steps to fix this issue with the insider preview Read More
Why i got 2 crawl properties for a single line of text field
I have a site column of type single line of text with internal name = DESTINATION. now when i wanted to define a RefinableString managed property for this field, i found that i got 2 crawl properties for the same column named (ows_DESTINATION & ows_q_TEST_DESTINATION) as follow:-
so which one i need to use inside the mapping? and why i got 2 crawl properties instead of one?
Thanks
I have a site column of type single line of text with internal name = DESTINATION. now when i wanted to define a RefinableString managed property for this field, i found that i got 2 crawl properties for the same column named (ows_DESTINATION & ows_q_TEST_DESTINATION) as follow:- so which one i need to use inside the mapping? and why i got 2 crawl properties instead of one?Thanks Read More
VLOOKUP, QUERY?
Hi, I have 6 sheets, and they have the same structure. I want to find the specific value (in Row R) according to the ID (in Row A) among these 6 sheets.
I tried Query, and Vlookup, but It did not go well.
When I tried Vlookup, there was a problem writing the range, because the range should be all six sheets.
What would be the best formula for my situation.
I really appreciate any help you can provide.
Hi, I have 6 sheets, and they have the same structure. I want to find the specific value (in Row R) according to the ID (in Row A) among these 6 sheets. I tried Query, and Vlookup, but It did not go well. When I tried Vlookup, there was a problem writing the range, because the range should be all six sheets.What would be the best formula for my situation. I really appreciate any help you can provide. Read More
Using PnP Modern Search we part why all columns are not showing any data
I have added a Search Result inside PnP Modern Search web part, with those settings:
And i added those slots which are linked to Search managed properties:-
and i added those to the Detailed list, as follow:-
here is a sample of one expression:-
{{slot item .slots.SalesOrderNo}}
now i got the items, but all the custom property are empty as follow:-
second question, how i can allow sorting the fields i have? such as Destination, Po# ? etc, is this possible?
Keeping in mind that i added the related data 3 days ago
any advice?
I have added a Search Result inside PnP Modern Search web part, with those settings: And i added those slots which are linked to Search managed properties:- and i added those to the Detailed list, as follow:- here is a sample of one expression:- {{slot item .slots.SalesOrderNo}} now i got the items, but all the custom property are empty as follow:- second question, how i can allow sorting the fields i have? such as Destination, Po# ? etc, is this possible?Keeping in mind that i added the related data 3 days agoany advice? Read More
Designer not loading Copilot Pro Subscription
Hello!
I recently started paying for the Copilot Pro and everything works great, the desktop apps with Copilot, and every other aspect of it.
The only resource that doesn’t seem to have been updated is the Designer, wich doesn’t mention any Pro subscription, on the web and on the app.
When I’m on Designer app or website, it shows only up to 15 “interactions” available, and offers me for the Copilot Pro subscription.
Is there a way to make it force-load my Pro Subscription?
Hello!I recently started paying for the Copilot Pro and everything works great, the desktop apps with Copilot, and every other aspect of it.The only resource that doesn’t seem to have been updated is the Designer, wich doesn’t mention any Pro subscription, on the web and on the app.When I’m on Designer app or website, it shows only up to 15 “interactions” available, and offers me for the Copilot Pro subscription.Is there a way to make it force-load my Pro Subscription? Read More
Show horizontal toolbar for a Detailed list inside pnp modern search we part
I have added a Search Result inside PnP Modern Search web part, with those settings: –
And i added those slots which are linked to Search managed properties:-
and i added those to the Detailed list where all fields are been set a resizable, as follow:-
now i want to add around 15 columns to the detailed list, but seems i will not get any horizontal toolbar by default on top and on the end of the list, to be able to view all the properties… any way to fix this?
Also the columns are not resizable? i cannot expand their width.
I also tried to set the columns as not multiline, as follow:-
but still i can not expand the width of the columns, here are my display settings:-
Any advice? on how to make the columns resizable + how to show a horizontal tool bar at the top and the button of the list view to allow users to view all the columns for the items?
I have added a Search Result inside PnP Modern Search web part, with those settings: – And i added those slots which are linked to Search managed properties:-and i added those to the Detailed list where all fields are been set a resizable, as follow:- now i want to add around 15 columns to the detailed list, but seems i will not get any horizontal toolbar by default on top and on the end of the list, to be able to view all the properties… any way to fix this?Also the columns are not resizable? i cannot expand their width.I also tried to set the columns as not multiline, as follow:- but still i can not expand the width of the columns, here are my display settings:- Any advice? on how to make the columns resizable + how to show a horizontal tool bar at the top and the button of the list view to allow users to view all the columns for the items? Read More
Show all items which share a content type inside one list view
I have a site content type named Carrier, and we will be creating custom lists based on this site content type.. now how i can have a single list view which will show items from all the lists? with the ability to filter and sort items?
Thanks
I have a site content type named Carrier, and we will be creating custom lists based on this site content type.. now how i can have a single list view which will show items from all the lists? with the ability to filter and sort items? Thanks Read More
Passwordless
I believe that I have all of the components needed to be passwordless in a Hybrid Joined AD/Entra ID environment. I can perform all of the passwordless login methods. I cannot get the password option to go away using “Enable Passwordless Experience”. I have made sure that no group policies are conflicting. I have verified, as per Intune, the settings catalog policy has been applied. I have tried it on two different laptops using 23H2 and 24H2 windows 11.
I believe that I have all of the components needed to be passwordless in a Hybrid Joined AD/Entra ID environment. I can perform all of the passwordless login methods. I cannot get the password option to go away using “Enable Passwordless Experience”. I have made sure that no group policies are conflicting. I have verified, as per Intune, the settings catalog policy has been applied. I have tried it on two different laptops using 23H2 and 24H2 windows 11. Read More
Intune – App protection policy to protect company data
Hi all,
I plan to configure and deploy App Protection policy for Android and iPhone mobile phones. I’m doing some study these days and trying to understand one thing:
I will confiture it for “all apps” and want to prevent users to copy organization data from their business account to their personal account – lets say, to prevent user to copy from Outlook company M365 email to personal GMAIL email.
I understand that I can prevent users from copying data from Outlook and linked company M365 email to – for example – GMAIL app with personal account linked as GMAIL app is not “managed app”.
My question however is:
How do I prevent users to add their GMAIL account to Outlook? So that I can prevent the situation that a user will add his GMAIL mailbox to Outlook and then copy/paste data over from M365 email to GMAIL email – as both are in the managed app (outlook). Or what is the best practice for this situations?
Hi all, I plan to configure and deploy App Protection policy for Android and iPhone mobile phones. I’m doing some study these days and trying to understand one thing: I will confiture it for “all apps” and want to prevent users to copy organization data from their business account to their personal account – lets say, to prevent user to copy from Outlook company M365 email to personal GMAIL email. I understand that I can prevent users from copying data from Outlook and linked company M365 email to – for example – GMAIL app with personal account linked as GMAIL app is not “managed app”. My question however is:How do I prevent users to add their GMAIL account to Outlook? So that I can prevent the situation that a user will add his GMAIL mailbox to Outlook and then copy/paste data over from M365 email to GMAIL email – as both are in the managed app (outlook). Or what is the best practice for this situations? Read More