Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.
exam questions

Exam AZ-104 All Questions

View all questions & answers for the AZ-104 exam

Exam AZ-104 topic 1 question 9 discussion

Actual exam question from Microsoft's AZ-104
Question #: 9
Topic #: 1
[All AZ-104 Questions]

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 run the Start-ADSyncSyncCycle -PolicyType Initial PowerShell cmdlet.
Does the solution meet the goal?

  • A. Yes
  • B. No
Show Suggested Answer Hide Answer
Suggested Answer: B 🗳️

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
imartinez
Highly Voted 3 years, 4 months ago
Answer is B ( No ) Initial will perform a full sync and add the user account created but it will take time, Delta, will kick off a delta sync and bring only the last change, so it will be "immediately" and will fulfill the requirements.
upvoted 120 times
juniorccs
2 years, 10 months ago
if the delta will be bring the last changes, so it's okay here, isn't it ? the answer should be then "YES" , correct ? where am I lost here ?
upvoted 4 times
Bere
2 years, 9 months ago
In the solution of this question they say “-PolicyType Initial”. However you must use “-PolicyType Delta” to get only the change made and sync it immediately. So the answer is “No”.
upvoted 22 times
...
...
jackdryan
1 year, 9 months ago
A is correct.
upvoted 9 times
...
skydivex
1 year, 9 months ago
The answer is A (YES), since the question did not mention the initial sync has been already done. A is correct
upvoted 13 times
...
arunet
2 years, 9 months ago
B is the answer. https://techcommunity.microsoft.com/t5/itops-talk-blog/powershell-basics-how-to-force-azuread-connect-to-sync/ba-p/887043
upvoted 9 times
GenjamBhai
2 years, 7 months ago
B is ok, delta for immediate sync, initial will take longer
upvoted 6 times
...
Etan1
1 year, 4 months ago
You article is correct but the answer is A Run the following command to force a complete sync but note that the length of sync time would be greatly increased. Start-ADSyncSyncCycle -PolicyType Initial
upvoted 1 times
...
...
...
GoldenDisciple2
Highly Voted 1 year, 3 months ago
Selected Answer: B
https://learn.microsoft.com/en-us/azure/active-directory/hybrid/connect/how-to-connect-sync-feature-scheduler In this article. It says word for word, "It could be that you have an urgent change that must be synchronized immediately, which is why you need to manually run a cycle. If you need to manually run a sync cycle, then from PowerShell run Start-ADSyncSyncCycle -PolicyType Delta." Keywords in this learn.microsoft article are immediately and manually.... If you want it to synchronize immediately, then you'll want to manually run a cycle.... To run a cycle manually, run the -delta command. Immediate = Manual. Manual = Delta. Therefor Immediate = Delta Full sync = Time Consuming. Time Consuming = Initial
upvoted 12 times
...
mm102938
Most Recent 4 days, 13 hours ago
according to https://learn.microsoft.com/en-us/entra/identity/hybrid/connect/how-to-connect-sync-feature-scheduler "Running a full sync cycle can be very time consuming" you need to use delta instead of initial
upvoted 1 times
...
Capzn
1 week ago
Answer should be A here. Initial initiates a full sync cycle while Delta sync's the changes made since the last sync
upvoted 1 times
...
Ariel235788
1 month ago
Running the PowerShell cmdlet Start-ADSyncSyncCycle -PolicyType Initial will trigger a full synchronization cycle between your on-premises Active Directory and Azure Active Directory. This ensures that any new user accounts or changes made on-premises, like the one you created, are replicated to Azure AD immediately. The "Initial" policy type triggers a full sync, which is appropriate in this case to ensure that the newly created user account is synchronized. The correct answer is: A. Yes
upvoted 1 times
...
0378d43
1 month, 1 week ago
Selected Answer: A
The cmdlet would sync it
upvoted 1 times
...
LaReis
1 month, 1 week ago
Segundo o Copilot: A. Sim. Executar o cmdlet Start-ADSyncSyncCycle -PolicyType Initial no PowerShell iniciará uma sincronização imediata entre o Active Directory local e o Azure AD, replicando as informações do usuário.
upvoted 1 times
...
asuarez
1 month, 3 weeks ago
Selected Answer: A
Running the Start-ADSyncSyncCycle -PolicyType Initial PowerShell cmdlet initiates a full synchronization cycle, replicating the new user information from the on-premises Active Directory to Azure AD immediately.
upvoted 1 times
...
Pcservices
2 months ago
Selected Answer: A
The Start-ADSyncSyncCycle -PolicyType Initial PowerShell cmdlet forces an initial synchronization between the on-premises Active Directory and Azure Active Directory (Azure AD). This includes all objects, such as users, groups, and contacts. An Initial Sync is a full synchronization cycle, which pulls all changes from the on-premises Active Directory to Azure AD. Since your goal is to replicate the new user information to Azure AD immediately, running this cmdlet achieves that by initiating a sync.
upvoted 1 times
...
SeMo0o0o0o
2 months, 2 weeks ago
Selected Answer: B
it´s B Keyword is IMMEDIATELY. So we muat use: Start-ADSyncSyncCycle -PolicyType Delta cmdlet. The Delta policy is much FASTER and intended for syncing recent changes, such as a newly created USER ACCOUNT.
upvoted 2 times
...
SeMo0o0o0o
2 months, 3 weeks ago
Selected Answer: B
it´s B Keyword is IMMEDIATELY. So we muat use: Start-ADSyncSyncCycle -PolicyType Delta cmdlet. The Delta policy is much FASTER and intended for syncing recent changes, such as a newly created USER ACCOUNT.
upvoted 1 times
...
Devs84
3 months ago
Selected Answer: B
Only need to do a Delta sync
upvoted 2 times
...
vrm1358
3 months, 1 week ago
Selected Answer: B
B is correct. initial can sync last config and is rapid
upvoted 2 times
...
Garthage
3 months, 2 weeks ago
'Immediately' in this context just means you want to kick off the sync manually right that moment, rather than wait for the next automated scheduled sync. Therefore -initial or -delta are both correct but as the questions asks specifically about -initial, then the answer is A. Yes
upvoted 2 times
...
vrm1358
3 months, 2 weeks ago
This cmdlet can be run with two different options for the -PolicyType parameter: 1- -PolicyType Delta: This triggers a delta synchronization. A delta sync processes only the changes (additions, deletions, and updates) that have occurred since the last synchronization. This is usually the preferred option for most scenarios because it's faster and less resource-intensive. 2--PolicyType Initial: This triggers a full synchronization. A full sync processes all directory objects and attributes from scratch, regardless of whether they have changed since the last sync. This option is more comprehensive but takes longer and uses more resources. Answer B is correct
upvoted 2 times
...
TheFivePips
3 months, 4 weeks ago
Selected Answer: B
The Start-ADSyncSyncCycle cmdlet has two policy types: Delta: This policy type performs a delta (or incremental) synchronization, syncing only the changes since the last sync. Initial: This policy type performs a full synchronization, syncing all objects and attributes. To immediately replicate the new user information to Azure AD, the Delta synchronization is typically sufficient because it syncs recent changes. The correct command for this scenario should be: Start-ADSyncSyncCycle -PolicyType Delta Thus, the correct answer is: B. No The -PolicyType Initial performs a full synchronization, which is more extensive than necessary just to sync a new user account.
upvoted 3 times
...
Rahulchowchow
3 months, 4 weeks ago
A. Yes Explanation: The provided solution, running the Start-ADSyncSyncCycle -PolicyType Initial PowerShell cmdlet, effectively meets the goal of immediately replicating the newly created user account in your on-premises Active Directory to Azure AD. Initial Synchronization: However, for newly created or modified objects, you can trigger an immediate synchronization cycle using the Start-ADSyncSyncCycle cmdlet. The -PolicyType parameter specifies the type of synchronization cycle to initiate. In this case, -PolicyType Initial forces a full initial synchronization, meaning it prioritizes syncing any objects that haven't been synchronized yet, including the newly created user account.
upvoted 1 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...