{"id":587,"date":"2023-07-10T14:55:11","date_gmt":"2023-07-10T06:55:11","guid":{"rendered":"https:\/\/www.ruianding.com\/blog\/?p=587"},"modified":"2023-08-31T01:50:22","modified_gmt":"2023-08-30T17:50:22","slug":"customize-the-adfs-sign-in-page-by-css-stylesheet","status":"publish","type":"post","link":"https:\/\/www.ruianding.com\/blog\/customize-the-adfs-sign-in-page-by-css-stylesheet\/","title":{"rendered":"Customize the ADFS Sign-in Page by CSS Stylesheet"},"content":{"rendered":"\n<p>In this tutorial, it will guide you through the process of transforming the CSS style sheet of the ADFS sign-in page to closely resemble the <strong>Azure AD sign-in page<\/strong>.<\/p>\n\n\n\n<p>This article assumes that you have some familiarity with front-end web CSS design and experience in customizing ADFS.<\/p>\n\n\n\n<p><a href=\"https:\/\/learn.microsoft.com\/en-us\/windows-server\/identity\/ad-fs\/operations\/ad-fs-user-sign-in-customization\">AD FS user sign-in customization | Microsoft Learn<\/a><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">1. Obtain the Azure AD UX Web Theme<\/h3>\n\n\n\n<p>You can download the CSS stylesheet from the following link:<\/p>\n\n\n\n<p><a href=\"https:\/\/github.com\/Microsoft\/adfsWebCustomization\/tree\/master\/centeredUi\">adfsWebCustomization\/centeredUi at master \u00b7 microsoft\/adfsWebCustomization \u00b7 GitHub<\/a><\/p>\n\n\n\n<p>Please follow the steps outlined in the documentation below to enable the new Azure AD UX web theme in AD FS:<br><a href=\"https:\/\/learn.microsoft.com\/en-us\/windows-server\/identity\/ad-fs\/operations\/azure-ux-web-theme-in-ad-fs\">Azure AD UX Web Theme in AD FS | Microsoft Learn<\/a><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">2. Configure the ADFS theme using the downloaded stylesheet<\/h3>\n\n\n\n<p>Firstly, we need to create a new ADFSWebTheme using the command below, using the Azure AD UX CSS file we downloaded:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"powershell\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">New-AdfsWebTheme \u2013Name AzureUXWeb -SourceName default \u2013StyleSheet @{path=\"C:\\centeredUi\\ThemeCenterBrand.css\"}<\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1150\" height=\"564\" src=\"https:\/\/www.ruianding.com\/blog\/wp-content\/uploads\/2023\/07\/image-34.png\" alt=\"\" class=\"wp-image-588\"\/><\/figure>\n\n\n\n<p>Don&#8217;t forget to set the onload.js as well:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"powershell\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">Set-AdfsWebTheme \u2013TargetName AzureUXWeb -AdditionalFileResource @{Uri=\"\/adfs\/portal\/script\/onload.js\"; path=\"C:\\centeredUi\\ThemeCenterBrand.css\"}<\/pre>\n\n\n\n<p>Next, use the set command to apply our pre-configured theme:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"powershell\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">Set-AdfsWebConfig -ActiveThemeName AzureUXWeb<\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1862\" height=\"962\" src=\"https:\/\/www.ruianding.com\/blog\/wp-content\/uploads\/2023\/07\/image-35.png\" alt=\"\" class=\"wp-image-589\"\/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">3. Advanced Customization<\/h3>\n\n\n\n<p>You can now see our modified sign-in UX layout, which closely resembles the Azure AD style. To further customize it, you can modify the CSS content. I will demonstrate using my own modified CSS stylesheet, where I have chosen a game character as the background and adjusted the buttons and footer to have a semi-transparent effect, enhancing the overall appearance of the interface. You can find the specific files on my GitHub page:<\/p>\n\n\n\n<p><a href=\"https:\/\/github.com\/raycrew5080\/adfsWebUXTheme-GenshinSAYU-\">raycrew5080\/adfsWebUXTheme-GenshinSAYU-: A adfs sign-in Theme (github.com)<\/a><\/p>\n\n\n\n<p>To create a new theme using the new CSS stylesheet, use the following command:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"powershell\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">New-AdfsWebTheme \u2013Name RuianLab -SourceName default \u2013StyleSheet @{path=\"C:\\adfstheme\\style\\ThemeCenterBrand.css\"}<\/pre>\n\n\n\n<p>Next, set our ADFS theme:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">Set-AdfsWebConfig -ActiveThemeName RuianLab<\/pre>\n\n\n\n<p>Set the Onload.js:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"powershell\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">Set-AdfsWebTheme \u2013TargetName RuianLab -AdditionalFileResource @{Uri=\"\/adfs\/portal\/script\/onload.js\"; path=\"C:\\adfstheme\\paginatedOnload.js\"}<\/pre>\n\n\n\n<p>Set the Illustration:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"powershell\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">Set-AdfsWebTheme -TargetName RuianLab -Illustration @{path=\"C:\\adfstheme\\illustration\\wallpaper.jpg\"}<\/pre>\n\n\n\n<p>Set the Homepage Link on footer:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">Set-AdfsGlobalWebContent -HomeLink https:\/\/www.ruianding.com\/ -HomeLinkText Home<\/pre>\n\n\n\n<p>Now, you have successfully customized your login page!<\/p>\n\n\n\n<p><a href=\"https:\/\/sts.fed.ruianding.com\/adfs\/ls\/idpinitiatedsignon\">https:\/\/sts.fed.ruianding.com\/adfs\/ls\/idpinitiatedsignon<\/a><\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1541\" height=\"970\" src=\"https:\/\/www.ruianding.com\/blog\/wp-content\/uploads\/2023\/07\/sayu-1.png\" alt=\"\" class=\"wp-image-593\"\/><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial, it will guide you through the process of transforming the CSS style sheet of the ADFS sign-in page to closely resemble the Azure AD sign-in page. This article assumes that you have some familiarity with front-end web CSS design and experience in customizing ADFS. AD FS user sign-in customization | Microsoft Learn [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_themeisle_gutenberg_block_has_review":false,"footnotes":""},"categories":[42,10],"tags":[5],"class_list":["post-587","post","type-post","status-publish","format-standard","hentry","category-adfs","category-tutorial","tag-adfs"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Customize the ADFS Sign-in Page by CSS Stylesheet - \u6781\u7b80IT\uff5cSimpleIT<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.ruianding.com\/blog\/customize-the-adfs-sign-in-page-by-css-stylesheet\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Customize the ADFS Sign-in Page by CSS Stylesheet - \u6781\u7b80IT\uff5cSimpleIT\" \/>\n<meta property=\"og:description\" content=\"In this tutorial, it will guide you through the process of transforming the CSS style sheet of the ADFS sign-in page to closely resemble the Azure AD sign-in page. This article assumes that you have some familiarity with front-end web CSS design and experience in customizing ADFS. AD FS user sign-in customization | Microsoft Learn [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.ruianding.com\/blog\/customize-the-adfs-sign-in-page-by-css-stylesheet\/\" \/>\n<meta property=\"og:site_name\" content=\"\u6781\u7b80IT\uff5cSimpleIT\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-10T06:55:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-08-30T17:50:22+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.ruianding.com\/blog\/wp-content\/uploads\/2023\/07\/image-34.png\" \/>\n<meta name=\"author\" content=\"Ruian Ding\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ruian Ding\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.ruianding.com\/blog\/customize-the-adfs-sign-in-page-by-css-stylesheet\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.ruianding.com\/blog\/customize-the-adfs-sign-in-page-by-css-stylesheet\/\"},\"author\":{\"name\":\"Ruian Ding\",\"@id\":\"https:\/\/www.ruianding.com\/blog\/#\/schema\/person\/440d88575b7dc819a4cefc8c4199db3b\"},\"headline\":\"Customize the ADFS Sign-in Page by CSS Stylesheet\",\"datePublished\":\"2023-07-10T06:55:11+00:00\",\"dateModified\":\"2023-08-30T17:50:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.ruianding.com\/blog\/customize-the-adfs-sign-in-page-by-css-stylesheet\/\"},\"wordCount\":297,\"publisher\":{\"@id\":\"https:\/\/www.ruianding.com\/blog\/#\/schema\/person\/440d88575b7dc819a4cefc8c4199db3b\"},\"image\":{\"@id\":\"https:\/\/www.ruianding.com\/blog\/customize-the-adfs-sign-in-page-by-css-stylesheet\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.ruianding.com\/blog\/wp-content\/uploads\/2023\/07\/image-34.png\",\"keywords\":[\"ADFS\"],\"articleSection\":[\"ADFS\",\"Tutorial\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.ruianding.com\/blog\/customize-the-adfs-sign-in-page-by-css-stylesheet\/\",\"url\":\"https:\/\/www.ruianding.com\/blog\/customize-the-adfs-sign-in-page-by-css-stylesheet\/\",\"name\":\"Customize the ADFS Sign-in Page by CSS Stylesheet - \u6781\u7b80IT\uff5cSimpleIT\",\"isPartOf\":{\"@id\":\"https:\/\/www.ruianding.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.ruianding.com\/blog\/customize-the-adfs-sign-in-page-by-css-stylesheet\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.ruianding.com\/blog\/customize-the-adfs-sign-in-page-by-css-stylesheet\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.ruianding.com\/blog\/wp-content\/uploads\/2023\/07\/image-34.png\",\"datePublished\":\"2023-07-10T06:55:11+00:00\",\"dateModified\":\"2023-08-30T17:50:22+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.ruianding.com\/blog\/customize-the-adfs-sign-in-page-by-css-stylesheet\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.ruianding.com\/blog\/customize-the-adfs-sign-in-page-by-css-stylesheet\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.ruianding.com\/blog\/customize-the-adfs-sign-in-page-by-css-stylesheet\/#primaryimage\",\"url\":\"https:\/\/www.ruianding.com\/blog\/wp-content\/uploads\/2023\/07\/image-34.png\",\"contentUrl\":\"https:\/\/www.ruianding.com\/blog\/wp-content\/uploads\/2023\/07\/image-34.png\",\"width\":1150,\"height\":564},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.ruianding.com\/blog\/customize-the-adfs-sign-in-page-by-css-stylesheet\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.ruianding.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Customize the ADFS Sign-in Page by CSS Stylesheet\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.ruianding.com\/blog\/#website\",\"url\":\"https:\/\/www.ruianding.com\/blog\/\",\"name\":\"Ruian's Tech Troubleshooting Toolbox\",\"description\":\"Debug the World.\",\"publisher\":{\"@id\":\"https:\/\/www.ruianding.com\/blog\/#\/schema\/person\/440d88575b7dc819a4cefc8c4199db3b\"},\"alternateName\":\"\u4e01\u777f\u5b89\u7684\u6280\u672f\u5206\u4eab\u535a\u5ba2\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.ruianding.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/www.ruianding.com\/blog\/#\/schema\/person\/440d88575b7dc819a4cefc8c4199db3b\",\"name\":\"Ruian Ding\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.ruianding.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/www.ruianding.com\/blog\/wp-content\/uploads\/2023\/05\/logo.png\",\"contentUrl\":\"https:\/\/www.ruianding.com\/blog\/wp-content\/uploads\/2023\/05\/logo.png\",\"width\":284,\"height\":284,\"caption\":\"Ruian Ding\"},\"logo\":{\"@id\":\"https:\/\/www.ruianding.com\/blog\/#\/schema\/person\/image\/\"},\"description\":\"I am currently a Support Specialist at NIO, focusing on cloud-related issues for NIO Power. Previously, at Microsoft Entra ID, I specialized in identity and access management (IAM), including device registration, Windows Hello for Business (WHfB), multi-factor authentication (MFA), and single sign-on (SSO). In addition to my core expertise, I have a strong foundation in Active Directory, Servers, Cloud Computing, Network Administration, and Front-end Web Development. This diverse technical skill set enables me to effectively handle a wide range of challenges in a fast-paced IT environment.\",\"sameAs\":[\"https:\/\/www.ruianding.com\"],\"url\":\"https:\/\/www.ruianding.com\/blog\/author\/ruiand\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Customize the ADFS Sign-in Page by CSS Stylesheet - \u6781\u7b80IT\uff5cSimpleIT","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:\/\/www.ruianding.com\/blog\/customize-the-adfs-sign-in-page-by-css-stylesheet\/","og_locale":"en_US","og_type":"article","og_title":"Customize the ADFS Sign-in Page by CSS Stylesheet - \u6781\u7b80IT\uff5cSimpleIT","og_description":"In this tutorial, it will guide you through the process of transforming the CSS style sheet of the ADFS sign-in page to closely resemble the Azure AD sign-in page. This article assumes that you have some familiarity with front-end web CSS design and experience in customizing ADFS. AD FS user sign-in customization | Microsoft Learn [&hellip;]","og_url":"https:\/\/www.ruianding.com\/blog\/customize-the-adfs-sign-in-page-by-css-stylesheet\/","og_site_name":"\u6781\u7b80IT\uff5cSimpleIT","article_published_time":"2023-07-10T06:55:11+00:00","article_modified_time":"2023-08-30T17:50:22+00:00","og_image":[{"url":"https:\/\/www.ruianding.com\/blog\/wp-content\/uploads\/2023\/07\/image-34.png","type":"","width":"","height":""}],"author":"Ruian Ding","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Ruian Ding","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.ruianding.com\/blog\/customize-the-adfs-sign-in-page-by-css-stylesheet\/#article","isPartOf":{"@id":"https:\/\/www.ruianding.com\/blog\/customize-the-adfs-sign-in-page-by-css-stylesheet\/"},"author":{"name":"Ruian Ding","@id":"https:\/\/www.ruianding.com\/blog\/#\/schema\/person\/440d88575b7dc819a4cefc8c4199db3b"},"headline":"Customize the ADFS Sign-in Page by CSS Stylesheet","datePublished":"2023-07-10T06:55:11+00:00","dateModified":"2023-08-30T17:50:22+00:00","mainEntityOfPage":{"@id":"https:\/\/www.ruianding.com\/blog\/customize-the-adfs-sign-in-page-by-css-stylesheet\/"},"wordCount":297,"publisher":{"@id":"https:\/\/www.ruianding.com\/blog\/#\/schema\/person\/440d88575b7dc819a4cefc8c4199db3b"},"image":{"@id":"https:\/\/www.ruianding.com\/blog\/customize-the-adfs-sign-in-page-by-css-stylesheet\/#primaryimage"},"thumbnailUrl":"https:\/\/www.ruianding.com\/blog\/wp-content\/uploads\/2023\/07\/image-34.png","keywords":["ADFS"],"articleSection":["ADFS","Tutorial"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.ruianding.com\/blog\/customize-the-adfs-sign-in-page-by-css-stylesheet\/","url":"https:\/\/www.ruianding.com\/blog\/customize-the-adfs-sign-in-page-by-css-stylesheet\/","name":"Customize the ADFS Sign-in Page by CSS Stylesheet - \u6781\u7b80IT\uff5cSimpleIT","isPartOf":{"@id":"https:\/\/www.ruianding.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.ruianding.com\/blog\/customize-the-adfs-sign-in-page-by-css-stylesheet\/#primaryimage"},"image":{"@id":"https:\/\/www.ruianding.com\/blog\/customize-the-adfs-sign-in-page-by-css-stylesheet\/#primaryimage"},"thumbnailUrl":"https:\/\/www.ruianding.com\/blog\/wp-content\/uploads\/2023\/07\/image-34.png","datePublished":"2023-07-10T06:55:11+00:00","dateModified":"2023-08-30T17:50:22+00:00","breadcrumb":{"@id":"https:\/\/www.ruianding.com\/blog\/customize-the-adfs-sign-in-page-by-css-stylesheet\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.ruianding.com\/blog\/customize-the-adfs-sign-in-page-by-css-stylesheet\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.ruianding.com\/blog\/customize-the-adfs-sign-in-page-by-css-stylesheet\/#primaryimage","url":"https:\/\/www.ruianding.com\/blog\/wp-content\/uploads\/2023\/07\/image-34.png","contentUrl":"https:\/\/www.ruianding.com\/blog\/wp-content\/uploads\/2023\/07\/image-34.png","width":1150,"height":564},{"@type":"BreadcrumbList","@id":"https:\/\/www.ruianding.com\/blog\/customize-the-adfs-sign-in-page-by-css-stylesheet\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.ruianding.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Customize the ADFS Sign-in Page by CSS Stylesheet"}]},{"@type":"WebSite","@id":"https:\/\/www.ruianding.com\/blog\/#website","url":"https:\/\/www.ruianding.com\/blog\/","name":"Ruian's Tech Troubleshooting Toolbox","description":"Debug the World.","publisher":{"@id":"https:\/\/www.ruianding.com\/blog\/#\/schema\/person\/440d88575b7dc819a4cefc8c4199db3b"},"alternateName":"\u4e01\u777f\u5b89\u7684\u6280\u672f\u5206\u4eab\u535a\u5ba2","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.ruianding.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/www.ruianding.com\/blog\/#\/schema\/person\/440d88575b7dc819a4cefc8c4199db3b","name":"Ruian Ding","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.ruianding.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/www.ruianding.com\/blog\/wp-content\/uploads\/2023\/05\/logo.png","contentUrl":"https:\/\/www.ruianding.com\/blog\/wp-content\/uploads\/2023\/05\/logo.png","width":284,"height":284,"caption":"Ruian Ding"},"logo":{"@id":"https:\/\/www.ruianding.com\/blog\/#\/schema\/person\/image\/"},"description":"I am currently a Support Specialist at NIO, focusing on cloud-related issues for NIO Power. Previously, at Microsoft Entra ID, I specialized in identity and access management (IAM), including device registration, Windows Hello for Business (WHfB), multi-factor authentication (MFA), and single sign-on (SSO). In addition to my core expertise, I have a strong foundation in Active Directory, Servers, Cloud Computing, Network Administration, and Front-end Web Development. This diverse technical skill set enables me to effectively handle a wide range of challenges in a fast-paced IT environment.","sameAs":["https:\/\/www.ruianding.com"],"url":"https:\/\/www.ruianding.com\/blog\/author\/ruiand\/"}]}},"_links":{"self":[{"href":"https:\/\/www.ruianding.com\/blog\/wp-json\/wp\/v2\/posts\/587","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.ruianding.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.ruianding.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.ruianding.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.ruianding.com\/blog\/wp-json\/wp\/v2\/comments?post=587"}],"version-history":[{"count":3,"href":"https:\/\/www.ruianding.com\/blog\/wp-json\/wp\/v2\/posts\/587\/revisions"}],"predecessor-version":[{"id":595,"href":"https:\/\/www.ruianding.com\/blog\/wp-json\/wp\/v2\/posts\/587\/revisions\/595"}],"wp:attachment":[{"href":"https:\/\/www.ruianding.com\/blog\/wp-json\/wp\/v2\/media?parent=587"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.ruianding.com\/blog\/wp-json\/wp\/v2\/categories?post=587"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.ruianding.com\/blog\/wp-json\/wp\/v2\/tags?post=587"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}