Entra ID Connect (formerly Azure AD Connect) helps you sync on-premises identities with Entra ID (Azure Active Directory), providing a seamless sign-in experience for users. Below is a step-by-step guide on how to install Entra ID Connect using Interactive Authentication mode.
Step 1: Open Command Prompt as Administrator
First, open a command prompt with elevated privileges (Run as Administrator) to ensure you have the necessary permissions.
Step 2: Navigate to the Azure AD Connect Installation Folder
By default, Azure AD Connect installs in C:\Program Files\Microsoft Azure Active Directory Connect
. Use the following command to navigate to this directory:
cd 'C:\Program Files\Microsoft Azure Active Directory Connect'
Step 3: Run the Installation with Interactive Authentication
Now, execute the following command to start the Entra ID Connect installation in interactive authentication mode:
.\AzureADConnect.exe /interactiveauth
Step 4: Follow the Installation Wizard
The installation wizard will now guide you through the process. Interactive authentication mode allows you to use your credentials directly instead of relying on stored credentials during the installation, making it more secure and suitable for environments requiring MFA or strict security measures.
Key Considerations:
- Ensure you have the necessary permissions within Entra ID to perform synchronization.
- Choose the appropriate options based on your organization’s hybrid identity setup (Password Hash Sync, Pass-through Authentication, or Federation).
- Make sure the server meets the system requirements before installation.
By following these steps, you can successfully install Entra ID Connect in a secure manner using interactive authentication!