{"id":160,"date":"2018-03-14T13:23:48","date_gmt":"2018-03-14T13:23:48","guid":{"rendered":"http:\/\/techsupportblog.co.uk\/?p=160"},"modified":"2021-04-18T17:38:38","modified_gmt":"2021-04-18T16:38:38","slug":"160","status":"publish","type":"post","link":"https:\/\/techtodd.co.uk\/index.php\/2018\/03\/14\/160\/","title":{"rendered":"MFA Status CSV Report of Microsoft 365\/Azure AD Users &#8211; Bulk Enforce MFA"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Overview<\/h2>\n\n\n\n<p>In some cases a customer will want to know the Multi-Factor Authentication (MFA) status of all of their Office 365 users (or a subset of users). Currently the best way to do this is using Powershell.<\/p>\n\n\n\n<p>There are three settings that a user account can be set to:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Disabled &#8211; MFA is not required to sign in at all<\/li><li>Enabled &#8211; MFA has been enabled for the user but they haven&#8217;t enrolled in MFA, they can bypass this screen and remain &#8220;Enabled&#8221; but not enforced. They should be prompted to register each time they log in<\/li><li>Enforced &#8211; The user has either completed the enrolment process or they have been administratively &#8220;Enforced&#8221; to use MFA. They must setup MFA in order for their Office 365 apps to work.<\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/techtodd.co.uk\/wp-content\/uploads\/2018\/03\/Screenshot-2021-04-06-162302-1.png\" alt=\"\" width=\"1115\" height=\"222\"><\/h2>\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites<\/h2>\n\n\n\n<ul class=\"wp-block-list\"><li>You will need the MSOnline Powershell module. To install this open Powershell as administrator and type<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"powershell\" class=\"language-powershell line-numbers\"><strong>Install-Module msonline<\/strong><\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\"><li>You will also need to download the &#8220;Microsoft Exchange Online Powershell module&#8221; from the Office 365 portal. (In the Exchange Management console under the &#8220;Hybrid&#8221; tab)<\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Generating a report of the current MFA Status (All Users)<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"powershell\" class=\"language-powershell line-numbers\"><strong>Connect-MsolService<\/strong>\n\n<strong>$Users = Get-MsolUser -all<\/strong>\n\n<strong>$Users | select DisplayName,Title,State,@{N='Email';E={$_.UserPrincipalName}},@{N='StrongAuthenticationRequirements';E={($_.StrongAuthenticationRequirements.State)}} | Export-Csv -NoTypeInformation C:\\temp\\Users.csv<\/strong> <\/code><\/pre>\n\n\n\n<p>Make sure you amend the folder location at the end of the command to an accessible location and you can name the file what you like.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Generating a report of the current MFA Status (Some Users) &#8211; Based on Title Attribute<\/h2>\n\n\n\n<p>The commands for this are very similar as generating a CSV for all users, however you just need to add a &#8220;where&#8221; statement to the Powershell. You need to carry out steps 1 and 2 of the first section before doing this. For example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"powershell\" class=\"language-powershell line-numbers\"><strong>$Users = Get-MsolUser -all | Where-Object {$_.Title -eq \"Director\"}<\/strong>\n \u00a0\n<strong>$Users | select DisplayName,Title,State,@{N='Email';E={$_.UserPrincipalName}},@{N='StrongAuthenticationRequirements';E={($_.StrongAuthenticationRequirements.State)}} | Export-Csv -NoTypeInformation C:\\temp\\Users.csv<\/strong><\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Generating a report of the current MFA Status (Guest Users)<\/h2>\n\n\n\n<p>The commands are again very similar to the above. Just the Get-MsolUser differs as it looks for users whose account is a guest within your tenant.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"powershell\" class=\"language-powershell line-numbers\"><strong>$users = get-msoluser -all | ? {$_.UserType -eq \"Guest\"}<\/strong>\n<strong>$Users | select DisplayName,Title,State,@{N='Email';E={$_.UserPrincipalName}},@{N='StrongAuthenticationRequirements';E={($_.StrongAuthenticationRequirements.State)}} | Export-Csv -NoTypeInformation C:\\temp\\Users.csv<\/strong><\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Changing the MFA Status (All Users)<\/h2>\n\n\n\n<p>The following commands are used to Enforce MFA for every user account in the organisation. You will need to connect to the MsolSevice using steps 1 and 2 from the first section.<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\"><p><em>WARNING: Only do this if you are sure what you are doing. Enforcing MFA for all users can stop multiple users from logging in and generate a lot of calls. I would recommend Enforcing only for groups of users (see next section)<\/em><\/p><\/blockquote>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"powershell\" class=\"language-powershell line-numbers\"><strong>$auth = New-Object -TypeName Microsoft.Online.Administration.StrongAuthenticationRequirement<\/strong> \n<strong>$auth.RelyingParty = \"*\"<\/strong> \n<strong>$Users = Get-MsolUser -all<\/strong> \n<strong>$auth.State = \"Enforced\"<\/strong> \n<strong>$auth.RememberDevicesNotIssuedBefore = (Get-Date)<\/strong> \n<strong>$Users | Foreach{ Set-MsolUser -UserPrincipalName $_.UserPrincipalName -StrongAuthenticationRequirements $auth}<\/strong> <\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Changing the MFA Status (Some Users)<\/h2>\n\n\n\n<p>Rather than Enforcing for all users it is much safer to do it on groups of users, so that any calls can be dealt with in batches. The commands are similar to the above but the Get-MSolUser step can be used with a &#8220;Where&#8221; statement to just select some users.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"powershell\" class=\"language-powershell line-numbers\"><strong>$auth = New-Object -TypeName Microsoft.Online.Administration.StrongAuthenticationRequirement<\/strong> \n<strong>$auth.RelyingParty = \"*\"<\/strong> \n<strong>$Users = Get-MsolUser -all | Where-Object {$_.State -eq \"West Midlands\"}<\/strong> \n<strong>$auth.State = \"Enforced\"<\/strong> \n<strong>$auth.RememberDevicesNotIssuedBefore = (Get-Date)<\/strong> \n<strong>$Users | Foreach{ Set-MsolUser -UserPrincipalName $_.UserPrincipalName -StrongAuthenticationRequirements $auth}<\/strong><\/code><\/pre>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Overview In some cases a customer will want to know the Multi-Factor Authentication (MFA) status of all of their Office 365 users (or a subset of users). Currently the best way to do this is using Powershell. There are three settings that a user account can be set to: Disabled &#8211; MFA is not required [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[46,47,31],"tags":[],"class_list":["post-160","post","type-post","status-publish","format-standard","hentry","category-azure-ad","category-microsoft-365","category-office-365"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>MFA Status CSV Report of Microsoft 365\/Azure AD Users - Bulk Enforce MFA<\/title>\n<meta name=\"description\" content=\"How to find the MFA status of Office 365 users, and then amend the status on mass if required. Tech Todd\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/project1-v4xcrw2sui.live-website.com\/index.php\/2018\/03\/14\/160\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"MFA Status CSV Report of Microsoft 365\/Azure AD Users - Bulk Enforce MFA\" \/>\n<meta property=\"og:description\" content=\"How to find the MFA status of Office 365 users, and then amend the status on mass if required. Tech Todd\" \/>\n<meta property=\"og:url\" content=\"https:\/\/project1-v4xcrw2sui.live-website.com\/index.php\/2018\/03\/14\/160\/\" \/>\n<meta property=\"og:site_name\" content=\"Tech Todd\" \/>\n<meta property=\"article:published_time\" content=\"2018-03-14T13:23:48+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-04-18T16:38:38+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/project1-v4xcrw2sui.live-website.com\/wp-content\/uploads\/2018\/03\/Screenshot-2021-04-06-162302-1.png\" \/>\n<meta name=\"author\" content=\"TC\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"TC\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/project1-v4xcrw2sui.live-website.com\\\/index.php\\\/2018\\\/03\\\/14\\\/160\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/project1-v4xcrw2sui.live-website.com\\\/index.php\\\/2018\\\/03\\\/14\\\/160\\\/\"},\"author\":{\"name\":\"TC\",\"@id\":\"https:\\\/\\\/project1-v4xcrw2sui.live-website.com\\\/#\\\/schema\\\/person\\\/12f10ae88eec753067405d37c00f9103\"},\"headline\":\"MFA Status CSV Report of Microsoft 365\\\/Azure AD Users &#8211; Bulk Enforce MFA\",\"datePublished\":\"2018-03-14T13:23:48+00:00\",\"dateModified\":\"2021-04-18T16:38:38+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/project1-v4xcrw2sui.live-website.com\\\/index.php\\\/2018\\\/03\\\/14\\\/160\\\/\"},\"wordCount\":446,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\\\/\\\/project1-v4xcrw2sui.live-website.com\\\/#\\\/schema\\\/person\\\/12f10ae88eec753067405d37c00f9103\"},\"image\":{\"@id\":\"https:\\\/\\\/project1-v4xcrw2sui.live-website.com\\\/index.php\\\/2018\\\/03\\\/14\\\/160\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/techtodd.co.uk\\\/wp-content\\\/uploads\\\/2018\\\/03\\\/Screenshot-2021-04-06-162302-1.png\",\"articleSection\":[\"Azure AD\",\"Microsoft 365\",\"Office 365\"],\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/project1-v4xcrw2sui.live-website.com\\\/index.php\\\/2018\\\/03\\\/14\\\/160\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/project1-v4xcrw2sui.live-website.com\\\/index.php\\\/2018\\\/03\\\/14\\\/160\\\/\",\"url\":\"https:\\\/\\\/project1-v4xcrw2sui.live-website.com\\\/index.php\\\/2018\\\/03\\\/14\\\/160\\\/\",\"name\":\"MFA Status CSV Report of Microsoft 365\\\/Azure AD Users - Bulk Enforce MFA\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/project1-v4xcrw2sui.live-website.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/project1-v4xcrw2sui.live-website.com\\\/index.php\\\/2018\\\/03\\\/14\\\/160\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/project1-v4xcrw2sui.live-website.com\\\/index.php\\\/2018\\\/03\\\/14\\\/160\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/techtodd.co.uk\\\/wp-content\\\/uploads\\\/2018\\\/03\\\/Screenshot-2021-04-06-162302-1.png\",\"datePublished\":\"2018-03-14T13:23:48+00:00\",\"dateModified\":\"2021-04-18T16:38:38+00:00\",\"description\":\"How to find the MFA status of Office 365 users, and then amend the status on mass if required. Tech Todd\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/project1-v4xcrw2sui.live-website.com\\\/index.php\\\/2018\\\/03\\\/14\\\/160\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/project1-v4xcrw2sui.live-website.com\\\/index.php\\\/2018\\\/03\\\/14\\\/160\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/project1-v4xcrw2sui.live-website.com\\\/index.php\\\/2018\\\/03\\\/14\\\/160\\\/#primaryimage\",\"url\":\"https:\\\/\\\/techtodd.co.uk\\\/wp-content\\\/uploads\\\/2018\\\/03\\\/Screenshot-2021-04-06-162302-1.png\",\"contentUrl\":\"https:\\\/\\\/techtodd.co.uk\\\/wp-content\\\/uploads\\\/2018\\\/03\\\/Screenshot-2021-04-06-162302-1.png\",\"width\":1115,\"height\":222},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/project1-v4xcrw2sui.live-website.com\\\/index.php\\\/2018\\\/03\\\/14\\\/160\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/project1-v4xcrw2sui.live-website.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"MFA Status CSV Report of Microsoft 365\\\/Azure AD Users &#8211; Bulk Enforce MFA\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/project1-v4xcrw2sui.live-website.com\\\/#website\",\"url\":\"https:\\\/\\\/project1-v4xcrw2sui.live-website.com\\\/\",\"name\":\"Tech Todd\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/project1-v4xcrw2sui.live-website.com\\\/#\\\/schema\\\/person\\\/12f10ae88eec753067405d37c00f9103\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/project1-v4xcrw2sui.live-website.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/project1-v4xcrw2sui.live-website.com\\\/#\\\/schema\\\/person\\\/12f10ae88eec753067405d37c00f9103\",\"name\":\"TC\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b3a6951f4b1a2876b9cb71e98dda385477183f62e689405514ba93c705bf95d7?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b3a6951f4b1a2876b9cb71e98dda385477183f62e689405514ba93c705bf95d7?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b3a6951f4b1a2876b9cb71e98dda385477183f62e689405514ba93c705bf95d7?s=96&d=mm&r=g\",\"caption\":\"TC\"},\"logo\":{\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b3a6951f4b1a2876b9cb71e98dda385477183f62e689405514ba93c705bf95d7?s=96&d=mm&r=g\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"MFA Status CSV Report of Microsoft 365\/Azure AD Users - Bulk Enforce MFA","description":"How to find the MFA status of Office 365 users, and then amend the status on mass if required. Tech Todd","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/project1-v4xcrw2sui.live-website.com\/index.php\/2018\/03\/14\/160\/","og_locale":"en_GB","og_type":"article","og_title":"MFA Status CSV Report of Microsoft 365\/Azure AD Users - Bulk Enforce MFA","og_description":"How to find the MFA status of Office 365 users, and then amend the status on mass if required. Tech Todd","og_url":"https:\/\/project1-v4xcrw2sui.live-website.com\/index.php\/2018\/03\/14\/160\/","og_site_name":"Tech Todd","article_published_time":"2018-03-14T13:23:48+00:00","article_modified_time":"2021-04-18T16:38:38+00:00","og_image":[{"url":"https:\/\/project1-v4xcrw2sui.live-website.com\/wp-content\/uploads\/2018\/03\/Screenshot-2021-04-06-162302-1.png","type":"","width":"","height":""}],"author":"TC","twitter_card":"summary_large_image","twitter_misc":{"Written by":"TC","Estimated reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/project1-v4xcrw2sui.live-website.com\/index.php\/2018\/03\/14\/160\/#article","isPartOf":{"@id":"https:\/\/project1-v4xcrw2sui.live-website.com\/index.php\/2018\/03\/14\/160\/"},"author":{"name":"TC","@id":"https:\/\/project1-v4xcrw2sui.live-website.com\/#\/schema\/person\/12f10ae88eec753067405d37c00f9103"},"headline":"MFA Status CSV Report of Microsoft 365\/Azure AD Users &#8211; Bulk Enforce MFA","datePublished":"2018-03-14T13:23:48+00:00","dateModified":"2021-04-18T16:38:38+00:00","mainEntityOfPage":{"@id":"https:\/\/project1-v4xcrw2sui.live-website.com\/index.php\/2018\/03\/14\/160\/"},"wordCount":446,"commentCount":1,"publisher":{"@id":"https:\/\/project1-v4xcrw2sui.live-website.com\/#\/schema\/person\/12f10ae88eec753067405d37c00f9103"},"image":{"@id":"https:\/\/project1-v4xcrw2sui.live-website.com\/index.php\/2018\/03\/14\/160\/#primaryimage"},"thumbnailUrl":"https:\/\/techtodd.co.uk\/wp-content\/uploads\/2018\/03\/Screenshot-2021-04-06-162302-1.png","articleSection":["Azure AD","Microsoft 365","Office 365"],"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/project1-v4xcrw2sui.live-website.com\/index.php\/2018\/03\/14\/160\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/project1-v4xcrw2sui.live-website.com\/index.php\/2018\/03\/14\/160\/","url":"https:\/\/project1-v4xcrw2sui.live-website.com\/index.php\/2018\/03\/14\/160\/","name":"MFA Status CSV Report of Microsoft 365\/Azure AD Users - Bulk Enforce MFA","isPartOf":{"@id":"https:\/\/project1-v4xcrw2sui.live-website.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/project1-v4xcrw2sui.live-website.com\/index.php\/2018\/03\/14\/160\/#primaryimage"},"image":{"@id":"https:\/\/project1-v4xcrw2sui.live-website.com\/index.php\/2018\/03\/14\/160\/#primaryimage"},"thumbnailUrl":"https:\/\/techtodd.co.uk\/wp-content\/uploads\/2018\/03\/Screenshot-2021-04-06-162302-1.png","datePublished":"2018-03-14T13:23:48+00:00","dateModified":"2021-04-18T16:38:38+00:00","description":"How to find the MFA status of Office 365 users, and then amend the status on mass if required. Tech Todd","breadcrumb":{"@id":"https:\/\/project1-v4xcrw2sui.live-website.com\/index.php\/2018\/03\/14\/160\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/project1-v4xcrw2sui.live-website.com\/index.php\/2018\/03\/14\/160\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/project1-v4xcrw2sui.live-website.com\/index.php\/2018\/03\/14\/160\/#primaryimage","url":"https:\/\/techtodd.co.uk\/wp-content\/uploads\/2018\/03\/Screenshot-2021-04-06-162302-1.png","contentUrl":"https:\/\/techtodd.co.uk\/wp-content\/uploads\/2018\/03\/Screenshot-2021-04-06-162302-1.png","width":1115,"height":222},{"@type":"BreadcrumbList","@id":"https:\/\/project1-v4xcrw2sui.live-website.com\/index.php\/2018\/03\/14\/160\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/project1-v4xcrw2sui.live-website.com\/"},{"@type":"ListItem","position":2,"name":"MFA Status CSV Report of Microsoft 365\/Azure AD Users &#8211; Bulk Enforce MFA"}]},{"@type":"WebSite","@id":"https:\/\/project1-v4xcrw2sui.live-website.com\/#website","url":"https:\/\/project1-v4xcrw2sui.live-website.com\/","name":"Tech Todd","description":"","publisher":{"@id":"https:\/\/project1-v4xcrw2sui.live-website.com\/#\/schema\/person\/12f10ae88eec753067405d37c00f9103"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/project1-v4xcrw2sui.live-website.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":["Person","Organization"],"@id":"https:\/\/project1-v4xcrw2sui.live-website.com\/#\/schema\/person\/12f10ae88eec753067405d37c00f9103","name":"TC","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/secure.gravatar.com\/avatar\/b3a6951f4b1a2876b9cb71e98dda385477183f62e689405514ba93c705bf95d7?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/b3a6951f4b1a2876b9cb71e98dda385477183f62e689405514ba93c705bf95d7?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b3a6951f4b1a2876b9cb71e98dda385477183f62e689405514ba93c705bf95d7?s=96&d=mm&r=g","caption":"TC"},"logo":{"@id":"https:\/\/secure.gravatar.com\/avatar\/b3a6951f4b1a2876b9cb71e98dda385477183f62e689405514ba93c705bf95d7?s=96&d=mm&r=g"}}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/sfa3Hp-160","_links":{"self":[{"href":"https:\/\/techtodd.co.uk\/index.php\/wp-json\/wp\/v2\/posts\/160","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/techtodd.co.uk\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/techtodd.co.uk\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/techtodd.co.uk\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/techtodd.co.uk\/index.php\/wp-json\/wp\/v2\/comments?post=160"}],"version-history":[{"count":10,"href":"https:\/\/techtodd.co.uk\/index.php\/wp-json\/wp\/v2\/posts\/160\/revisions"}],"predecessor-version":[{"id":551,"href":"https:\/\/techtodd.co.uk\/index.php\/wp-json\/wp\/v2\/posts\/160\/revisions\/551"}],"wp:attachment":[{"href":"https:\/\/techtodd.co.uk\/index.php\/wp-json\/wp\/v2\/media?parent=160"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/techtodd.co.uk\/index.php\/wp-json\/wp\/v2\/categories?post=160"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/techtodd.co.uk\/index.php\/wp-json\/wp\/v2\/tags?post=160"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}