Exam AZ-104 All QuestionsBrowse all questions from this exam
Question 11

Note: The question is included in a number of questions that depicts the identical set-up. However, every question has a distinctive result. Establish if the solution satisfies the requirements.

Your company has an Azure Active Directory (Azure AD) tenant named weyland.com that is configured for hybrid coexistence with the on-premises Active

Directory domain.

You have a server named DirSync1 that is configured as a DirSync server.

You create a new user account in the on-premise Active Directory. You now need to replicate the user information to Azure AD immediately.

Solution: You restart the NetLogon service on a domain controller.

Does the solution meet the goal?

    Correct Answer: B

    The solution of restarting the NetLogon service on a domain controller does not meet the goal of immediately replicating the new user account information to Azure AD. The NetLogon service handles domain user login authentication and does not play a role in Azure AD synchronization. To replicate the user information to Azure AD immediately, you should manually run a synchronization cycle using the Azure AD Connect tool. This can be done using the PowerShell command Start-ADSyncSyncCycle with the PolicyType parameter set to Delta for a quick sync or Initial for a full sync.

Discussion
BereOption: B

As described here: https://docs.microsoft.com/en-us/azure/active-directory/hybrid/how-to-connect-sync-feature-scheduler If you need to manually run a sync cycle, then from PowerShell run Start-ADSyncSyncCycle -PolicyType Delta. To initiate a full sync cycle, run Start-ADSyncSyncCycle -PolicyType Initial from a PowerShell prompt. Running a full sync cycle can be very time consuming, so if you need to replicate the user information to Azure AD immediately then run Start-ADSyncSyncCycle -PolicyType Delta. Answer is B. No

juniorccs

very important explanation

sumit_das

very good explanation.

jackdryan

B is correct. You run the Start-ADSyncSyncCycle -PolicyType Initial PowerShell cmdlet.

18c2076

For any immediate sync actions from AADConnect you do NOT run the Policy Type Initial. YOU RUN POLICY TYPE DELTA!!!!!!!!!

Steve1983Option: B

NO Please dont restart 'Netlogon' ever, in test or production... Rather reboot the whole DC, wich wont help for starting a sync i guess. If it does, its kinda a retarted way to force a sync to start.

james2033Option: B

Cannot use NetLogon service for replicate user information to Azure AD (even not immediately).

tashakoriOption: B

No is right

VirenderPannuOption: B

Delta synchronization is for routine updates, processing only changes since the last sync, while Initialize synchronization is more resource-intensive and is used for initial setup or major changes.

iUCorbeOption: B

run Start-ADSyncSyncCycle -PolicyType Delta

dhivyamohanbabuOption: B

Option B

nearFOption: B

No is the correct answer

Nico1973Option: B

Answer: No Explanation: Restarting the NetLogon service on a domain controller will not immediately replicate the new user account information to Azure AD. The DirSync server is responsible for synchronizing user information between the on-premises Active Directory domain and Azure AD. To replicate the new user information to Azure AD immediately, you should manually run a synchronization cycle on the DirSync server or force a synchronization using PowerShell commands.

mattpaulOption: B

B is correct, agree with Bere Get all questions from me contact me on <a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="bdcddcc8d193d0dcc9c9d5d8cace8c848a8dfdd2c8c9d1d2d2d693ded2d0">[email protected]</a>

Saurabh_BhargavOption: B

B To run the manual sync cycle you can use command Start-ADSyncSyncCycle -PolicyType Delta To run full initial Sync Start-ADSyncSyncCycle -PolicyType Initial

_gio_Option: B

I think no

thang2902Option: B

B is correct

vatsa0025

If anybody have contributor access then kindly send the dump on email address <a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="7102101219181f07100502104141434431161c10181d5f121e1c">[email protected]</a>. Many Thanks

Push_HarderOption: B

AD to AAD Directory Synchronization is done through Azure AD Connect. Netlogon is a Local Security Authority service that runs in the background. It handles domain user login authentication. It maintains a secure channel between this computer and the domain controller for authenticating users and services. If this service is stopped, the computer may not authenticate users and services, and the domain controller cannot register DNS records. If this service is disabled, any services that explicitly depend on it will fail to start.

Ashwini_GjhOption: B

no...To replicate a new user account's information to Azure AD immediately, you should use Azure AD Connect's synchronization tools and commands or run Start-ADSyncSyncCycle -PolicyType Delta.

james2033Option: B

[Restarting NetLogon service] is not related to [Active Directory syncing].