by Contributed | Apr 2, 2021 | Technology
This article is contributed. See the original author and article here.
News the team is covering this week includes Public preview of AD FS sign-in activity in Azure AD reporting, Networking for Key Vault references on Windows in App Service and Azure Functions now generally available, Azure Cost Management and Billing updates, What’s New in Microsoft Teams and an identity focused Microsoft Learn module of the week.
AD FS sign-in activity in Azure AD reporting now in Public Preview
Alex Simons recently shared the latest Active Azure Directory capabilities to help streamline your hybrid identity, monitoring, and B2B user experiences. These updates help achieve a more unified identity management from a single control plane and enrich experiences to help provide seamless and secure collaboration with guest users.

AD FS sign-ins can now be added to Azure AD activity reporting, giving organizations a unified view of their hybrid identity infrastructure and helping them along their identity modernization journey. Also added, activity is now recorded in the Azure AD audit logs of the tenant the user was signed into with the Azure portal, not just the logs of the newly created tenant whenever a user creates a new Azure AD tenant.
Read the following Microsoft Idenitity article to learn more: March identity updates – Public preview of AD FS sign-in activity in Azure AD reporting and more
Networking for Key Vault references on Windows in App Service and Azure Functions now generally available
Apps previously deployed using App Service Environments have been able to access network restricted vaults. Windows apps with virtual network integrations can now also access these vaults enabling teams to further restrict access to secrets with support for Linux apps to follow.
Learn more here: Use Key Vault references for App Service and Azure Functions
Azure Cost Management and Billing updates for March 2021
Cloud cost is always top of mind for most organizations when looking to adopt Azure services. Microsoft recently announced updates to Azure Cost Management and Billing which include forecasted cost alerts, new cost view for subscriptions and other cost saving tools.
These are just a few of the big updates announced. Don’t forget to check out Azure Cost Management and Billing updates to learn more.
What’s New in Microsoft Teams for March 2021
A lot of updates to services to report on this week. Microsoft Teams is also included in that list as a lot of exciting product updates and offerings announced at Ignite have now become generally available.

PowerPoint Live, Live Reactions, Invite-only meeting options now available in meetings. Webinars and larger meetings can now host 20,000-person view-only broadcasts and download attendee reports. Low data calling mode limits the bandwidth used on cellular connections. Also, Android devices can now use remote device provisioning to better manage Teams Rooms.
You can read about all Teams announcements here: What’s New in Microsoft Teams | February and March 2021
Community Events
- Azure Landing Zone Q&A – Join Sarah Lean and Thomas Maurer, as they take your questions regarding Azure Landing Zones and walk through a deployment of a landing zone during this show.
- Hello World – Special guests, content challenges, upcoming events, and daily updates
- Patch and Switch – Patch and Switch are back to share thier “from the trenches” stories
MS Learn Module of the Week

Implementing and managing hybrid identity
Creating a hybrid-identity solution to leverage your on-premises active directory can be challenging. Explore how to implement a secure hybrid-identity solution.

Modules include:
- Plan, design, and implement Azure Active Directory Connect (AADC)
- Manage Azure Active Directory Connect (AADC)
- Manage password hash synchronization (PHS)
- Manage pass-through authentication (PTA)
- Manage seamless single sign-on (Seamless SSO)
- Manage federation excluding manual ADFS deployments
- Troubleshoot synchronization errors
- Implement and manage Azure Active Directory Connect Health
This module is also part of the SC-300 prep material.
Learn more here: Implement and manage hybrid identity

Let us know in the comments below if there are any news items you would like to see covered in the next show. Be sure to catch the next AzUpdate episode and join us in the live chat.
by Contributed | Apr 1, 2021 | Technology
This article is contributed. See the original author and article here.
Doing Microsoft Graph Fundamentals learning path on MS Learn – Part 1

This blog post will summarize how I did the brand new Microsoft Graph Fundamentals Learning path. Microsoft Graph Fundamentals consists of 3 modules:
What is Microsoft Graph – lets you understand the Graph services and shows you how you can access user information from Graph using their learning playground called Graph Explorer. You will do a short exercise on that as well.
Configure a JavaScript application to retrieve Microsoft 365 data using Microsoft Graph – lets you understand how app registration works in Azure AD with permissions for Microsoft Graph powered apps and closes with two exercises using MSAL – making authentication easy.
Access user photo information with Microsoft Graph – in this module, you continue with the application you built-in module 2 and learn how to retrieve a user photo and do an exercise about it.
The whole learning path is estimated to take us ~75 minutes. Let’s see how it goes
To be very honest: I worked with Graph before – see my blog posts here: Microsoft Graph – M365 Princess – but it’s the first time I do this guided learning on Microsoft Learn. I will cover module 1 in this post and continue with module 2 and 3 in the following posts.
What is Microsoft Graph
In super short: Microsoft Graph is a set of APIs that lets you access data in Microsoft 365 and use it for custom coded and low code applications. With this, Microsoft Graph is your key to data. Here are three tremendous advantages of it:
- across all Microsoft services, you can use one endpoint https://graph.microsoft.com – which makes development straightforward as you don’t need to learn all the different APIs for mail and calendar and files and so on
- documentation is fantastic, and there is a ton of learning material – like this learning path or the upcoming Learn Together- Building apps with Microsoft Graph event
- you can try out Graph in Graph Explorer – if you like to read more about that, read my blog post on how to get started with Graph Explorer
- Microsoft Graph Toolkit (you will learn more about it later) makes authentication (my personal kryptonite) easy. It also provides you with ready-to-use components and reduces the time you need to develop.
Intro
For this module, you will need to be a global admin in a Microsoft 365 tenant. The easiest way to have this is to join the Microsoft 365 developer program and get a free E5 subscription. If you are not familiar with this, read Julie Turner’s article about it, at least some basic JavaScript understanding, and you should know what Azure Active Directory does. You will also need to have Node.js installed.
The learning module introduces you to a business scenario so that it is easier for you to imagine which kind of applications we are talking about. In this scenario, we want to bring together messages from chat, emails, attended meetings, notes, key contacts, and relevant files.
Our application could also grow later on and bring in data from more services like Windows 10 services or Enterprise Mobility and Security Services. We will not build this in total in this learning path, but we get a perspective, what we can develop based on our organization’s needs.
Understand Microsoft Graph Services
At the very heart of Graph, we will find users and groups. In our application, we will need to access data from a single user’s personal scope (mail, messages, events) and a group scope (teamwork).
The module introduces you to some Microsoft Graph API calls and shows you how the response will look. All API responses will be in JSON format – in case you want to learn more about it, read this article by Bob German on Introduction to JSON
The even more exciting part is that apart from making direct API calls, Microsoft provides us with the Graph SDK (Software Developer Kit). We can use the client Graph SDK client libraries to even more easily call the Graph API.
Access user information from Microsoft Graph using Graph Explorer
This chapter introduces you to Graph Explorer -easily access it at aka.ms/ge, try out some sample queries! My blog post on how to get started with Graph Explorer explains that in detail.
Exercise – Access user information from Microsoft Graph using Graph Explorer
Time to access your own data! I strongly recommend not playing in your production tenant- especially if you do not only want to read data with GET requests but also want to write, update, or delete data with POST, PATCH, UPDATE, or DELETE requests. Get yourself a Microsoft 365 developer tenant and use this.
This chapter teaches you how to modify permissions in Graph explorer and how tips help you.
You will learn how to send a message to Teams via Graph – this is not a test; it will really appear in Teams.
Let us 1’up this already fantastic experience. Besides using this beautiful UI, Graph Explorer provides you with:
- Access tokens used for authentication (recognizing who a user is) and authorization (looking up the correct privileges)
- Code snippets for three different languages so that you can copy-paste them into your applications
- Microsoft Graph Toolkit components – most fabulous thing ever! If you are not familiar with MGT, go check it out
- Adaptive cards snippets so you can quickly build UI components for your apps
You see, this is the ‘absolutely carefree package’ provided by the Microsoft Graph team.
Conclusion on Module 1:
Microsoft Graph is not only THE door opener to access all kinds of information and data across Microsoft 365 for developers and makers. They also provide us with this fantastic learning playground, aka Graph Explorer, in which we can try out, learn, explore and get snippets for all kinds of development scenarios.
After introducing you to some basic concepts on Microsoft Graph, you have learned on a real-world example how to use Microsoft Graph before continuing to access data via Graph in a JavaScript application. This learning module is fantastic! If you never heard about Graph, you’ll get everything you need to start right away with it!

by Contributed | Apr 1, 2021 | Technology
This article is contributed. See the original author and article here.
This webinar provides an overview of Microsoft’s unified DLP solution and covers the new features that have been released to help better protect your data.

Resources:
WATCH the on-demand webinar
Overview of data loss prevention – Microsoft 365 Compliance | Microsoft Docs
Microsoft Information Protection SDK documentation | Microsoft Docs
This webinar was presented on March 17, 2021, and the recording can be found here.
Attached to this post are:
- The FAQ document that summarizes the questions and answers that came up over the course of both Webinars.
- A PDF copy of the presentation.
Thanks to those of you who participated during the two sessions and if you haven’t already, don’t forget to check out our resources available on the Tech Community.
Thanks!
@Robin_Baldwin on behalf of the MIP and Compliance CXE team
by Contributed | Apr 1, 2021 | Technology
This article is contributed. See the original author and article here.
This survey captures the top asks we captured from our customers via the various engagements, discussions, and feedback channels.
Hello Microsoft Information governance community,
The survey is available at: https://aka.ms/MIPC/MIG21H2-FeatureSurvey and it will be opened for the next 3 weeks till April 21, 2021.
If you want to influence the platform with features and capabilities that you want, need and like, this is the time to make it happen and share your feedback.
Thanks,
Randall Galloway on behalf of the MIG product group
by Contributed | Apr 1, 2021 | Technology
This article is contributed. See the original author and article here.
If you want to understand how to best configure Windows updates and optimize the user experience, this is the learning path you’ve been waiting for. Building on the fundamentals we outlined in Stay current with Windows 10 and Microsoft 365 Apps, our new learning module is designed to help you Manage Windows updates in the cloud—in 41 minutes or less! :smiling_face_with_smiling_eyes:
What will I learn?
- The tools you can use to update Windows devices
- How to manage quality (i.e. monthly), feature, and driver updates for Windows devices
- How to create a positive update experience for your end users
Screenshot of the full “Manage Windows updates in the cloud” learning module
Share your thoughts
We hope you will find this new learning module valuable! We will continue to invest in Microsoft Learn experiences around deploying and managing Windows so if you have a suggest on something we should cover in an official module or learning path, leave a comment below!
Recent Comments