Skip to content

Ulysses Neves

Microsoft Entra ID, authentication, and hybrid identity troubleshooting.

Menu
  • Início
  • Microsoft Azure
  • Microsoft AD FS
  • Microsoft 365
  • Contact
Menu

AD FS – Backing up/restore AD FS configurations into Azure using AD FS Rapid Restore tool

Posted on 15 de June de 2022

Hello everyone. Today we’re going to share a method to run AD FS configuration backup and restore using Azure storage and the AD FS Rapid Restore tool.

It’s well known, the tool AD FS Rapid Restore is available to help engineers who want to replicate AD FS farm into a test environment or want to recover the farm from a disaster. For more scenarios in which this tool can be used, please check this official link.

In this article, we will cover the specific scenario below, but basically what changes if you have other farm configurations are the backup and restore commands mentioned in the link above.

Scenario:
Backup: AD FS 2019 configuration
AD FS service account: Group Managed Service Account (GMSA)
Database type: Windows Internal Database

Backup process:

To backup the AD FS server’s configurations, first, you need to install the tool after downloading the files using this link.

With the software installed in the AD FS primary server, we will run the command below to import the proper libraries before running tasks:

import-module 'C:\Program Files (x86)\ADFS Rapid Recreation Tool\ADFSRapidRecreationTool.dll'

The command below will bring into variables the credentials to be used against Azure in order to allow the task to save the backup files into the storage account. Please use your own tenant’s information in the variables below:

– Password = “This-is-the-Key-of-your-storage-account-and-can-be-found-in-your-Azure-Storage-Container-under-Access-Keys”
– Username = “adfsbackups” #Name of your storage account

$Password = "This-is-the-Key-of-your-storage-account-and-can-be-found-in-your-Azure-Storage-Container-under-Access-Keys"
$pass = ConvertTo-SecureString -AsPlainText $Password -Force
$Username = "adfsbackups" #Name of your storage account
$cred = New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList $Username,$pass

With the credentials collected, now we will run the command below to run the backup task:

Backup-ADFS -StorageType "Azure" -AzureConnectionCredentials $cred -AzureStorageContainer "managedlab" -EncryptionPassword "password" -BackupComment "Clean Install of AD FS" -BackupDKM

In Azure, we can see the new container created by the backup process.

Restore:

With the backup completed, we can implement the restore into one Windows Server following the steps below. Make sure you follow the same installation steps provided at the beginning of this article. This is required to have the restore commands known by the destination server.

With the tool installed, let’s import the libraries:

import-module 'C:\Program Files (x86)\ADFS Rapid Recreation Tool\ADFSRapidRecreationTool.dll'

Let’s run commands below to collect the credentials used to recover the backup files from Azure storage container:

$Password = "This-is-the-Key-of-your-storage-account-and-can-be-found-in-your-Azure-Storage-Container-under-Access-Keys"
$pass = ConvertTo-SecureString -AsPlainText $Password -Force
$Username = "adfsbackups" #Name of your storage account
$cred = New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList $Username,$pass

With the credentials collected, let’s run the command below to recover the configurations and have the tool setup the AD FS farm into the new server using the same configurations used by the previous server:

Restore-ADFS -StorageType "Azure" -AzureConnectionCredentials $cred -AzureStorageContainer "managedlab" -DecryptionPassword "password" -GroupServiceAccountIdentifier "CORP\gsma$" -RestoreDKM -DBConnectionString "WID"

Note: Once the restore is done, the tool creates a post restore file with instructions to be followed before starting AD FS service.

In my scenario, the tool advised me to install my MFA connector and configure the custom attribute store into the new AD FS server before starting the AD FS service. These tasks are not done as part of the restoration process.

After I’ve configured the pending steps above, I am able to start the AD FS service in the new server. The new server will be the current AD FS Primary server, considering I am running a WID database.

Checking the AD FS Relying Party Trusts in the new server, we confirm the previous trusts have been recovered:

We can also confirm the SSL, token-signing and token-decrypting certificates used by AD FS have been recovered into the new server:

With the scenario above, the next step is to have the new server configured into the load balancer or DNS records to allow users to authenticate into it.

Summary

In this article, we covered how to back up and restore AD FS farm’s configurations using Azure storage account.

I hope you have enjoyed reading this article, and it helps you manage your AD FS environment.

Enjoyed the article? Like and share. 🙂

Note: I do not represent the organization I work for, all the opinions expressed here, are my own. This post is provided AS IS with no warranties or guarantees and confers no rights.

In case you have any suggestions or feedback, please leave a comment.

[ ]’s
Ulysses Neves

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Recent Posts

  • Microsoft Authenticator Will Block Jailbroken Devices in 2026 — What You Need to Know 17 de March de 2026
  • Enhancing Azure role activation security with FIDO2/Passkeys 23 de September de 2024
  • Microsoft Entra ID CAP | Enforcing WHfB using Authentication Strength 21 de April de 2024
  • Troubleshooting Error Code ‘0x000005e’ in WHfB: PIN Authentication Woes 11 de February de 2024
  • WHfB: Fixing Windows Hello for Business error ‘LogoncertTemplateReady: NO (StateNoTemplate)’ 29 de December de 2023

Archives

  • March 2026
  • September 2024
  • April 2024
  • February 2024
  • December 2023
  • September 2023
  • July 2023
  • June 2023
  • May 2023
  • April 2023
  • March 2023
  • February 2023
  • January 2023
  • December 2022
  • October 2022
  • September 2022
  • August 2022
  • July 2022
  • June 2022
  • May 2022
  • April 2022
  • March 2022
  • February 2022
  • January 2022
  • December 2021
  • November 2021
  • October 2021
  • September 2021
  • August 2021
  • July 2021
  • June 2021
  • May 2021
  • April 2021
  • March 2021
  • February 2021
  • January 2021
  • December 2020
  • November 2020
  • October 2020
  • September 2020
  • August 2020
  • July 2020
  • June 2020
  • May 2020
  • April 2020
  • March 2020
  • February 2020
  • January 2020
  • December 2019
  • November 2019
  • October 2019
  • September 2019
  • August 2019
  • July 2019

Tags

#aaddownleveldevice #aadhybridjoin #adfs #adfsonsql #azuread #azureauth #azureCA #azuredevice #azurehybridjoin #azuremfa #azuresecurity #capolicy #cloudkerberostrust #conditionalaccess #conditionalaccesspolicy #deviceregistration #gmsaaccount #gopasswordless #hybridaadjoin #mfaserver #msadfs #msazure #msidentity #namedlocation #sslcertificatevalidation #tshootadfs #tshoothybridjoin #tshootwaptrust #waptrust #WHFBcerttrust #whfbdeployment #WHfBhybridsetup #widdatabase adconnect authenticationcontext authenticationstrength az500 azuread azuremfa azurepim azuresecurity cloudsecurity microsoft365 msazure WHfB
©2026 Ulysses Neves | Design: Newspaperly WordPress Theme
Ulysses Neves
Gerenciar Consentimento de Cookies
Para fornecer as melhores experiências, usamos tecnologias como cookies para armazenar e/ou acessar informações do dispositivo. O consentimento para essas tecnologias nos permitirá processar dados como comportamento de navegação ou IDs exclusivos neste site. Não consentir ou retirar o consentimento pode afetar negativamente certos recursos e funções.
Funcional Always active
O armazenamento ou acesso técnico é estritamente necessário para a finalidade legítima de permitir a utilização de um serviço específico explicitamente solicitado pelo assinante ou utilizador, ou com a finalidade exclusiva de efetuar a transmissão de uma comunicação através de uma rede de comunicações eletrónicas.
Preferências
O armazenamento ou acesso técnico é necessário para o propósito legítimo de armazenar preferências que não são solicitadas pelo assinante ou usuário.
Estatísticas
O armazenamento ou acesso técnico que é usado exclusivamente para fins estatísticos. O armazenamento técnico ou acesso que é usado exclusivamente para fins estatísticos anônimos. Sem uma intimação, conformidade voluntária por parte de seu provedor de serviços de Internet ou registros adicionais de terceiros, as informações armazenadas ou recuperadas apenas para esse fim geralmente não podem ser usadas para identificá-lo.
Marketing
O armazenamento ou acesso técnico é necessário para criar perfis de usuário para enviar publicidade ou para rastrear o usuário em um site ou em vários sites para fins de marketing semelhantes.
  • Manage options
  • Manage services
  • Manage {vendor_count} vendors
  • Read more about these purposes
Ver preferências
  • {title}
  • {title}
  • {title}