(2016-07-20) Installing And Configuring Azure AD Connect Health For Active Directory Domain Services
Posted by Jorge on 2016-07-20
This blog post show you how to configure Azure AD Connect Health for AD/ADDS
–
First download the Azure AD Connect Health Agent for AD/ADDS from here
After the download move/copy the executable to every DC you want to install the Azure AD Connect Health for AD/ADDS on
Double-click on the executable
Click [Install]
Figure 1: Azure AD Connect Health – Install Screen
–
After the installation ends, you need to determine how your DCs have access to the internet.
If the DC has a direct connection, you need to only open up firewall ports first before continuing.
If the DC must have access through a proxy, you must configure the proxy settings first before continuing
–
There are several options to source the proxy settings from
[1] If you want to source the settings from Internet Explorer use: Set-AzureAdConnectHealthProxySettings -ImportFromInternetSettings
[2] If you want to source the settings from WinHTTP use: Set-AzureAdConnectHealthProxySettings -ImportFromWinHttp
[3] If you want to source the settings manually use: Set-AzureAdConnectHealthProxySettings -HttpsProxyAddress <PROXYSERVER>:<PORT>
–
Afterwards you can view the proxy settings in use by Azure AD Connect Health through: Get-AzureAdConnectHealthProxySettings
Additional info regarding the URLs accessed by Azure AD Connect Health see: https://azure.microsoft.com/en-us/documentation/articles/active-directory-aadconnect-health-agent-install/
–
If your DC supports cookies and JavaScript or IE Enhanced Security Configuration has been disabled:
Click [Configure Now]
If your DC does not support cookies and JavaScript or IE Enhanced Security Configuration has been or is enabled:
Click [Close] and continue with figure 9
Figure 2: Azure AD Connect Health – Configure Screen
–
Specify either native Azure AD credentials or federated credentials. In either case, the credentials must have the Global Administrator role in Azure AD!
Figure 3: Azure AD Connect Health – Initial Credentials Screen
–
…because I used federated credentials, I’m redirected to ADFS
Figure 4: Azure AD Connect Health – Redirection To ADFS
–
…specify the password belonging to the specified user name
Figure 5: Azure AD Connect Health – Credentials Screen
–
…registration continues
Figure 6: Azure AD Connect Health – Registration Of The Agent
–
If you clicked [Configure Now] in figure 2 and your DC did not support cookies and JavaScript or IE Enhanced Security Configuration has been or is enabled, you will see the following message
Close the screen by clicking the red cross in the upper right corner
Figure 7: Azure AD Connect Health – Message About Cookies And/Or Javascript Not Being Supported
–
Closing the screen above throws the following errors
Figure 8: Azure AD Connect Health – Additional Errors
–
Open a new PowerShell command prompt window and type:
Import-Module AdHealthAdds
$azureADCreds = Get-Credential
Specify either native Azure AD credentials or federated credentials. In either case, the credentials must have the Global Administrator role in Azure AD!
Figure 9: Azure AD Connect Health – Starting Registration And Entering Native Azure Credentials
–
In the existing PowerShell command prompt window type:
Register-AzureADConnectHealthADDSAgent -Credential $azureADCreds
Figure 10: Azure AD Connect Health – Registration Of The Agent
–
Done! After doing on all the DCs, you can go to https://portal.azure.com/ and check the health of your AD/ADDS
–
PS: The installation of the Azure AD Connect Health Agent for ADFS is very similar!
–
Cheers,
Jorge
———————————————————————————————
* This posting is provided "AS IS" with no warranties and confers no rights!
* Always evaluate/test yourself before using/implementing this!
* DISCLAIMER: https://jorgequestforknowledge.wordpress.com/disclaimer/
———————————————————————————————
############### Jorge’s Quest For Knowledge #############
######### http://JorgeQuestForKnowledge.wordpress.com/ ########
———————————————————————————————
This entry was posted on 2016-07-20 at 23:00 and is filed under Active Directory Domain Services (ADDS), Azure AD Connect Health, Azure AD Connect Health, Windows Azure Active Directory. You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.
2 Responses to “(2016-07-20) Installing And Configuring Azure AD Connect Health For Active Directory Domain Services”
Leave a Reply Cancel reply
This site uses Akismet to reduce spam. Learn how your comment data is processed.
Steve Rackham said
is there any instruction set for installation on server core?
LikeLike
Jorge said
you need to install it and register it afterwards through PowerShell.
After installing the appropriate agent setup.exe, you can perform the agent registration step using the following PowerShell commands depending on the role. Open a PowerShell Window and execute the appropriate command:
For ADFS: Register-AzureADConnectHealthADFSAgent
For ADDS: Register-AzureADConnectHealthADDSAgent
For AAD Connect: Register-AzureADConnectHealthSyncAgent
And make sure to use a global account for which MFA is NOT enabled/enforced or disable the enforcement temporarily for that account, register it and enable the enforcement again
SOURCE: https://docs.microsoft.com/en-us/azure/active-directory/hybrid/how-to-connect-health-agent-install
LikeLike