Tag Archives: microsoft
Teams Policy: Banning a user from joining Team Meetings in a organization
Hi,
I want to ban a specific user (AI bots) from entering Teams Meetings in my org.
Is there a way to establish a Teams policy to do this?
Thanks/Brgds
joao
Hi,I want to ban a specific user (AI bots) from entering Teams Meetings in my org.Is there a way to establish a Teams policy to do this? Thanks/Brgdsjoao Read More
Anyone else not able to download cloud-delivered test file ?
The test file for cloud-delivered protection seems to not be accessible anymore: https://aka.ms/ioavtest
Is someone able to confirm this (and report the issue to MSFT) ?
The test file for cloud-delivered protection seems to not be accessible anymore: https://aka.ms/ioavtestref: https://learn.microsoft.com/en-us/defender-endpoint/defender-endpoint-demonstration-cloud-delivered-protection#scenario Is someone able to confirm this (and report the issue to MSFT) ? Read More
Microsoft Defender for Cloud compute recommendations
Is there a current offline copy in Excel format of all compute recommendations in Microsoft Defender for Cloud such as MCSB?
Reference table for all compute security recommendations in Microsoft Defender for Cloud – Microsoft Defender for Cloud | Microsoft Learn
Is there a current offline copy in Excel format of all compute recommendations in Microsoft Defender for Cloud such as MCSB?Reference table for all compute security recommendations in Microsoft Defender for Cloud – Microsoft Defender for Cloud | Microsoft Learn Read More
Change EntraAzure Sign in as email
Hi,
We are looking at simplifying the way our users sign into EntraAzure products. Currently they sign into with their Entra UPN which is the same as their on-prem UPN. The issue is some users are firstname.lastname@domain and others are letterlastname@domain. Ideally we would like to change sign into EntraAzure products to be their email address instead. I know we can enable alternative sign in but this then allows the user to sign in as UPN and all emails addresses.
So we’re thinking of changing our Azure AD Connect Application on-premise to use email instead. Please can someone advise the pros and cons of doing this.
Thank you,
Adrian
Hi, We are looking at simplifying the way our users sign into EntraAzure products. Currently they sign into with their Entra UPN which is the same as their on-prem UPN. The issue is some users are firstname.lastname@domain and others are letterlastname@domain. Ideally we would like to change sign into EntraAzure products to be their email address instead. I know we can enable alternative sign in but this then allows the user to sign in as UPN and all emails addresses. So we’re thinking of changing our Azure AD Connect Application on-premise to use email instead. Please can someone advise the pros and cons of doing this.Thank you,Adrian Read More
S2D 2 Nodes Hyper-V Cluster
The Resources:
2 physical Windows 2022 Data Center servers:
1- 2 sockets 24 physical CPU core
2- 64 GB RAM
3- 2 * 480GB SSD RAID 1 (OS Partition)
4- 4 * 3.37TB SSD RAID 5 the total approximately 10 or 11 TB after the RAID
5- 4 * 10gb Nic
1 Physical Windows 2016 standard server with DC role
The Desired: I want to make 2 nodes Hyper V cluster with S2D to combine the 2 servers storage into 1 shared clustered volume and store the VMs on it and make a high availability solution which will fail over automatically when one of the nodes is down without using an external source for the storage such as SAS, is this scenario possible?
The Resources:2 physical Windows 2022 Data Center servers:1- 2 sockets 24 physical CPU core2- 64 GB RAM3- 2 * 480GB SSD RAID 1 (OS Partition)4- 4 * 3.37TB SSD RAID 5 the total approximately 10 or 11 TB after the RAID5- 4 * 10gb Nic1 Physical Windows 2016 standard server with DC roleThe Desired: I want to make 2 nodes Hyper V cluster with S2D to combine the 2 servers storage into 1 shared clustered volume and store the VMs on it and make a high availability solution which will fail over automatically when one of the nodes is down without using an external source for the storage such as SAS, is this scenario possible? Read More
Upload file option is freezed while creating a new form.
Answer is in the settings, you need to change who can fill this form, if you have selected Anyone, the upload function will not work for security/malware issues. Also, if you select only people from my organization, then it will start working fine.
BR
Hitesh Ved
8390703219
Answer is in the settings, you need to change who can fill this form, if you have selected Anyone, the upload function will not work for security/malware issues. Also, if you select only people from my organization, then it will start working fine. BR Hitesh Ved8390703219 Read More
How to Wipe hard drive on my Windows 7 computer?
I need assistance with wiping my hard drive on a Windows 7 system. I am preparing to sell my computer and want to ensure that all my personal data is securely erased before passing it on to someone else. I’ve heard there are different methods to wipe a hard drive, but I want to make sure I’m using a reliable approach that will completely remove all traces of my data.
Can anyone provide detailed instructions or recommend effective tools to perform this task on Windows 7? I’m concerned about making any mistakes during the process, so guidance on how to proceed safely would be incredibly helpful. Thank you for your support!
I need assistance with wiping my hard drive on a Windows 7 system. I am preparing to sell my computer and want to ensure that all my personal data is securely erased before passing it on to someone else. I’ve heard there are different methods to wipe a hard drive, but I want to make sure I’m using a reliable approach that will completely remove all traces of my data. Can anyone provide detailed instructions or recommend effective tools to perform this task on Windows 7? I’m concerned about making any mistakes during the process, so guidance on how to proceed safely would be incredibly helpful. Thank you for your support! Read More
How to Set Directory Synchronization Features with the Graph
Directory synchronization features control how the Entra Connect tool works when synchronizing accounts from Active Directory to Entra ID. The current advice is to use a cmdlet from the depreciated MSOL module to update settings. This article explains how to do the job with the Graph APIs, including cmdlets from the Entra PowerShell module.
https://office365itpros.com/2024/10/24/directory-synchronization-features/
Directory synchronization features control how the Entra Connect tool works when synchronizing accounts from Active Directory to Entra ID. The current advice is to use a cmdlet from the depreciated MSOL module to update settings. This article explains how to do the job with the Graph APIs, including cmdlets from the Entra PowerShell module.
https://office365itpros.com/2024/10/24/directory-synchronization-features/ Read More
PnP SingleWebPartAppPage removing all page contents
I am trying to convert a SharePoint page into a single web part app page to display a PowerBi report in full screen. I have tried creating the page, converting to “article” layout, adding the embed (both the PBI specific and the generic embed) webpart then running the script to convert to a single webpart app page.
When I run the script, it is converting the page but it is removing the embedded web part.
Here is my code:
$clientId = “XXX”
$clientSecret = “XXX”
$tenantId = “XXX”
$scope = “https://graph.microsoft.com/.default” # Use Microsoft Graph default scope for app-only authentication
Connect-PnPOnline -Url example.com -ClientId $clientId -Tenant $tenantId -Certificatepath “C:UsersUserExample” -CertificatePassword (ConvertTo-SecureString -AsPlainText “Example” -Force)
if(Get-PnPConnection) {
Set-PnPPage -Identity “Example.aspx” -LayoutType singleWebPartAppPage
} else {
Write-Host “Connection failed. Please check your credentials and try again.”
Any help or advice would be greatly appreciated.
I am trying to convert a SharePoint page into a single web part app page to display a PowerBi report in full screen. I have tried creating the page, converting to “article” layout, adding the embed (both the PBI specific and the generic embed) webpart then running the script to convert to a single webpart app page. When I run the script, it is converting the page but it is removing the embedded web part. Here is my code:$clientId = “XXX” $clientSecret = “XXX” $tenantId = “XXX” $scope = “https://graph.microsoft.com/.default” # Use Microsoft Graph default scope for app-only authenticationConnect-PnPOnline -Url example.com -ClientId $clientId -Tenant $tenantId -Certificatepath “C:UsersUserExample” -CertificatePassword (ConvertTo-SecureString -AsPlainText “Example” -Force)if(Get-PnPConnection) {Set-PnPPage -Identity “Example.aspx” -LayoutType singleWebPartAppPage} else {Write-Host “Connection failed. Please check your credentials and try again.” Any help or advice would be greatly appreciated. Read More
How do I convert JPG to ICO on Windows 10 computer?
How do I convert JPG images to ICO format on Windows 10? I have several images that I’d like to use as icons, but I’m unsure of the best method to perform this conversion. I’ve tried a few online converters, but I want to ensure that the quality remains high and that the process is straightforward.
If anyone could provide a step-by-step guide or recommend reliable software for this task, I’m eager to find a solution that works efficiently on my Windows 10 computer without compromising the integrity of the images.
How do I convert JPG images to ICO format on Windows 10? I have several images that I’d like to use as icons, but I’m unsure of the best method to perform this conversion. I’ve tried a few online converters, but I want to ensure that the quality remains high and that the process is straightforward. If anyone could provide a step-by-step guide or recommend reliable software for this task, I’m eager to find a solution that works efficiently on my Windows 10 computer without compromising the integrity of the images. Read More
Average response time to email by user
Hello All,
Is there any way/script to get average response/reply time to email by user?
Thank You in advance.
Hello All,Is there any way/script to get average response/reply time to email by user?Thank You in advance. Read More
Gray areas in Excel Spreadsheet
I keep getting this gray area on top whenever I’m working on this spreadsheet. Also, when I zoom in/out, the whole sheet turns gray and acts very weird. Any idea how to make this stop?
I keep getting this gray area on top whenever I’m working on this spreadsheet. Also, when I zoom in/out, the whole sheet turns gray and acts very weird. Any idea how to make this stop? Read More
MS ProjtUpdating Actual Start and Finish dates without changing the Scheduled Start and Finish dates
I am trying to set the Actual Start and Finish Dates without affecting the Scheduled Start and Finish dates. I have set the Status date to the date I want, marked the %complete at 50%. When I update the Actual Start Date the Scheduled Start Date is updated to the same date. I need to be able record tasks that have started early or late.
I am trying to set the Actual Start and Finish Dates without affecting the Scheduled Start and Finish dates. I have set the Status date to the date I want, marked the %complete at 50%. When I update the Actual Start Date the Scheduled Start Date is updated to the same date. I need to be able record tasks that have started early or late. Read More
MAC OS with Azure AD log in
Can we allow MAC OS to login with Azure AD ID.
Can we allow MAC OS to login with Azure AD ID. Read More
Inconsistent Data product behavior
Hi all,
I have created a Data product with two Data assets. When I delete one of the Data assets, the Data product still shows the Data asset, but if I go in and refresh, it shows a “not found” error.
If I want to delete the Data asset from the Data product, it doesn’t let me, because it says that it has data Quality rules attached… and that this “Data quality” data must first be deleted.
As you can imagine, I can’t delete this data because the Data asset doesn’t exist and I can’t do anything in the Data quality part.
Is there a solution to delete a “already deleted Data asset” from the list of Data assets within a Data product?
Thanks,
David
Hi all, I have created a Data product with two Data assets. When I delete one of the Data assets, the Data product still shows the Data asset, but if I go in and refresh, it shows a “not found” error.If I want to delete the Data asset from the Data product, it doesn’t let me, because it says that it has data Quality rules attached… and that this “Data quality” data must first be deleted.As you can imagine, I can’t delete this data because the Data asset doesn’t exist and I can’t do anything in the Data quality part. Is there a solution to delete a “already deleted Data asset” from the list of Data assets within a Data product? Thanks,David Read More
Ho do I convert JPG to ICO on Windows 10 computer?
Ho do I convert JPG images to ICO format on Windows 10? I have several images that I’d like to use as icons, but I’m unsure of the best method to perform this conversion. I’ve tried a few online converters, but I want to ensure that the quality remains high and that the process is straightforward.
If anyone could provide a step-by-step guide or recommend reliable software for this task, I’m eager to find a solution that works efficiently on my Windows 10 computer without compromising the integrity of the images.
Ho do I convert JPG images to ICO format on Windows 10? I have several images that I’d like to use as icons, but I’m unsure of the best method to perform this conversion. I’ve tried a few online converters, but I want to ensure that the quality remains high and that the process is straightforward. If anyone could provide a step-by-step guide or recommend reliable software for this task, I’m eager to find a solution that works efficiently on my Windows 10 computer without compromising the integrity of the images. Read More
Bulk upload of phone number in Authentication mehtod.
How to upload phone number in bulk under Entra id’s user authentication method.
How to upload phone number in bulk under Entra id’s user authentication method. Read More
Embracing Responsible AI: Measure and Mitigate Risks for a Generative AI App in Azure AI Studio
Hello Students, AI Enthusiasts, Developers, and Innovators!
Artificial intelligence has taken the world by storm, redefining the way businesses operate and innovate. Whether you’re an experienced developer or a beginner looking to break into the world of AI, Azure AI Studio offers a robust platform for creating cutting-edge AI applications responsibly and securely.
I recently had the opportunity to dive into the Microsoft Learn module: Measure and Mitigate Risks for a Generative AI App in Azure AI Studio. It’s an incredible resource that walks you through every step of building and refining a responsible AI application. Today, I’d like to share my experience and encourage you to embark on this journey too, gaining essential skills in the process.
Why Should You Take This Module?
AI holds immense potential, but with that power comes responsibility—particularly when creating generative AI applications. This module offers a thorough, step-by-step guide that not only teaches you the technical aspects of Azure AI but also helps you understand how to minimize risks and ensure responsible AI development.
Whether you’re just getting started with AI or looking to expand your knowledge, this module is ideal because:
Beginner-Friendly: Even if you’re new to Azure AI Studio, the concepts are explained clearly, ensuring you can follow along and build confidence.
Hands-On Learning: You’ll engage with real-world scenarios, comparing, deploying, and interacting with models to build a generative AI app.
Risk Mitigation: It emphasizes safety—teaching you how to create system messages, set up content filters, and evaluate your models to safeguard against inappropriate prompts.
Highlights from the Module
Overview and Prerequisites: You’ll kick off with an introduction to the course objectives and get a list of what’s needed, including an Azure subscription (you can create one for free).
Deploying Models: You’ll learn how to choose from a vast catalog of models and deploy one suited for generative AI applications. You’ll even get to interact with your model using the chat playground—an excellent hands-on feature.
Ground Your Model with Data: Using Retrieval Augmented Generation (RAG), you’ll learn how to upload your own data and index it, ensuring your model provides relevant and data-driven responses.
Safety Features: A standout part of the module is how it guides you to set up system messages and content filters, making your model safer by handling sensitive or inappropriate prompts.
Evaluation Process: You’ll explore both manual and automated evaluations to assess the quality and safety of your model’s responses. This is crucial for refining the app and ensuring its robustness before deployment.
Knowledge Check: At the end of the module, you’ll take a knowledge check to ensure your understanding. Plus, you’ll earn a badge—perfect for showcasing your skills on LinkedIn or in your portfolio.
My Experience
Going through this module was a rewarding experience, providing me with both technical insights and practical steps to build more responsible AI applications. It challenged me to think critically about the risks involved in AI, especially in the generative space. Completing the module also gave me the confidence to implement these practices in my projects.
Ready to Dive In?
If you’re looking to enhance your AI skills and build applications that prioritize safety and responsibility, I highly recommend this Microsoft Learn module. Not only will you deepen your understanding of Azure AI Studio, but you’ll also gain crucial skills in risk mitigation—an area that is becoming increasingly important as AI continues to evolve.
Visit Microsoft Learn today and start your journey towards mastering responsible AI development. Let’s build the future of AI together—safely and ethically.
Resources to Get Started:
Measure and Mitigate Risks for a Generative AI App in Azure AI Studio
Create Your Azure Subscription
Embrace responsible AI principles and practices
Microsoft Tech Community – Latest Blogs –Read More
Question about file download on MS Teams app
Dear Sir
I’m developing Tab app for MS Teams application.
We need a file download feature on the Tab app, which is executed by Web hosting.
The thing is that it takes around one minute to download the file.
Therefore, for customer notice, I want to know about if the file download is completed or not.
Is there a API related to this feature?
Many thanks
BH
Dear SirI’m developing Tab app for MS Teams application.We need a file download feature on the Tab app, which is executed by Web hosting.The thing is that it takes around one minute to download the file. Therefore, for customer notice, I want to know about if the file download is completed or not.Is there a API related to this feature?Many thanksBH Read More
Community Fundraiser
PLEASE READ!!!!!
My name is Yasamin, and I’m a senior at WSU Tri-Cities (Go Cougs!!) as well as a technical intern at a national laboratory. I’m reaching out to ask for your support in spreading the word about two projects I’m working on with my clubs at WSU Tri-Cities.
Muslim Students Association (MSA) Fundraiser:
We’re raising funds to create care packages for the less fortunate in our community, including items like scarves, hats, gloves, and hygiene supplies to help them through the harsh winter. We’re collaborating with the Gospel Union to make this mission a success.
Link for MSA Fundraiser: https://cougstarter.wsu.edu/project/44183
Pre-Health Club Fundraiser:
Our goal is to raise funds for a visit to the WSU Elson S. Floyd College of Medicine in Spokane, where students will have the opportunity to learn about the admissions process and explore campus life. The funds will help cover transportation and food for the trip.
Link for Pre-Health Club Fundraiser: https://cougstarter.wsu.edu/project/43877
We’re accepting donations through October 30, 2024. Any help spreading the word or contributing to these projects would mean a lot! Please check out the links or scan the QR codes in the flyers to learn more.
Thank you so much for your support!
PLEASE READ!!!!! My name is Yasamin, and I’m a senior at WSU Tri-Cities (Go Cougs!!) as well as a technical intern at a national laboratory. I’m reaching out to ask for your support in spreading the word about two projects I’m working on with my clubs at WSU Tri-Cities.Muslim Students Association (MSA) Fundraiser:We’re raising funds to create care packages for the less fortunate in our community, including items like scarves, hats, gloves, and hygiene supplies to help them through the harsh winter. We’re collaborating with the Gospel Union to make this mission a success.Link for MSA Fundraiser: https://cougstarter.wsu.edu/project/44183 Pre-Health Club Fundraiser:Our goal is to raise funds for a visit to the WSU Elson S. Floyd College of Medicine in Spokane, where students will have the opportunity to learn about the admissions process and explore campus life. The funds will help cover transportation and food for the trip.Link for Pre-Health Club Fundraiser: https://cougstarter.wsu.edu/project/43877 We’re accepting donations through October 30, 2024. Any help spreading the word or contributing to these projects would mean a lot! Please check out the links or scan the QR codes in the flyers to learn more.Thank you so much for your support! Read More