I have an Exchange Hybrid deployment set up via Azure Active Directory Connect. I would like to also have password sync set up, so I can fail over to it in the case of my ADFS box going down.
I would try a failover as documented here: http://ithinkthereforeiehlo.com/password-sync-adfs-federation-disaster-recovery/
The issue is that the option for Password Sync is gray. I found a similar issue here: https://social.msdn.microsoft.com/Forums/azure/en-US/ce224551-d5f8-48f3-ac61-a43fc9b59b6a/azure-ad-connect-password-sync-option-greyed-out?forum=WindowsAzureAD but the difference is I am not actually trying to eliminate ADFS, I just want Password Sync as a backup.
Going off of Jen_Field_MSFT's answer from there, would it work to run
PS c:\>$adConnector = "<CASE SENSITIVE AD CONNECTOR NAME>"
PS c:\>$aadConnector = “<CASE SENSITIVE AAD CONNECTOR NAME>”
PS c:\> Set-ADSyncAADPasswordSyncState -ConnectorName $aadConnector –Enable $true
PS c:\> Set-ADSyncAADPasswordSyncConfiguration -SourceConnector $adConnector -TargetConnector $aadConnector -Enable $true
without running Convert-MSOLDomainToStandard first? Would that accomplish having both ADFS and Password Sync?
Thank you, Randy.