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 (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
imartinez
Highly Voted 3 years, 11 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 133 times
juniorccs
3 years, 5 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 6 times
Bere
3 years, 4 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 31 times
...
...
jackdryan
2 years, 4 months ago
A is correct.
upvoted 10 times
...
skydivex
2 years, 5 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
3 years, 4 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
3 years, 2 months ago
B is ok, delta for immediate sync, initial will take longer
upvoted 6 times
...
Etan1
2 years 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, 11 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 20 times
...
Kabilanis
Most Recent 1 week, 4 days ago
Selected Answer: B
Below are the possible options for this scenario. Consolidating here for easy read of subscribers. Solution: You run the Start-ADSyncSyncCycle -PolicyType Initial PowerShell cmdlet. - No Solution: You use Active Directory Sites and Services to force replication of the Global Catalog on a domain controller. - No Solution: You restart the NetLogon service on a domain controller. - No Solution: You run the Start-ADSyncSyncCycle -PolicyType Delta PowerShell cmdlet. - No
upvoted 2 times
...
shankey05
2 weeks, 2 days ago
Selected Answer: A
Yes, running this command will force Azure AD Connect to sync all objects, including the new user, immediately to Azure AD. - Although a delta sync (`-PolicyType Delta`) is usually enough and faster for syncing new users, a full sync (`-PolicyType Initial`) will also replicate the user information immediately. - So, the solution does meet the goal of replicating the user to Azure AD immediately. Since the question uses the full sync command (`-PolicyType Initial`), it does meet the goal of immediate replication. Answer: A. Yes
upvoted 1 times
...
jakeson
1 month ago
Selected Answer: A
The cmdlet Start-ADSyncSyncCycle -PolicyType Initial is used to manually trigger a full synchronization between the on-premises Active Directory and Azure Active Directory (Azure AD). -PolicyType Initial performs a full sync, including both delta and initial sync processes. This is typically used when there have been changes in configuration or schema that require a complete sync. Since the goal is to replicate the new user account information to Azure AD immediately, this command does meet the goal.
upvoted 1 times
...
ZUMY
1 month ago
Selected Answer: B
B is the Answer Start-ADSyncCycle -PolicyType Delta
upvoted 1 times
...
NicoVick
1 month, 1 week ago
Selected Answer: B
b is good answer
upvoted 1 times
...
Rab4622
2 months ago
Selected Answer: B
La commande Start-ADSyncSyncCycle -PolicyType Initial est spécifique à Azure AD Connect, et non à DirSync.
upvoted 1 times
...
Rab4622
2 months ago
Selected Answer: B
Is no because the command is for Azure ad connect not for the obsolete service servsync
upvoted 1 times
...
andted98
3 months, 1 week ago
Selected Answer: B
To initiate an immediate sync between the on-premises AD and Azure Active Directory, the policy type needs to be changed from 'Initial' to 'Delta'.
upvoted 1 times
...
jharishi
3 months, 4 weeks ago
Selected Answer: A
A is correct, as it meets the solution. It doesn't ask the faster solution, just if its meet or not, so it meet.
upvoted 1 times
...
victorio_27
4 months, 4 weeks ago
Selected Answer: A
l cmdlet Start-ADSyncSyncCycle -PolicyType Initial se usa en entornos con Azure AD Connect (anteriormente DirSync) para iniciar manualmente una sincronización completa de directorios. Dado que el entorno descrito utiliza Azure AD en modo híbrido con un servidor DirSync (DirSync1), la creación de una nueva cuenta de usuario en Active Directory local no se replicará inmediatamente en Azure AD a menos que se inicie manualmente la sincronización o se espere la sincronización programada (que ocurre cada 30 minutos, por defecto). Diferencia entre tipos de sincronización en Azure AD Connect: Delta: Solo sincroniza los cambios recientes. Se ejecuta automáticamente cada 30 minutos. Initial: Realiza una sincronización completa, útil para nuevos usuarios, cambios de esquema o cuando se configuran nuevas reglas de sincronización.
upvoted 1 times
...
willie439
5 months, 1 week ago
Selected Answer: A
Answer A is correct. The question is "Does the solution meet the goal?" it is not the best solution, however it meet the goal.
upvoted 1 times
...
Nathan12345
6 months ago
Selected Answer: A
To run Delta cmd, data needs to be synced already. Anyway Initial cmd will not impact immediately however for new sync below cmd is req Start-ADSyncSyncCycle -PolicyType Initial
upvoted 1 times
...
guha_saheb
6 months, 1 week ago
Selected Answer: B
immediately key word changes the answer to NO so the corret answer in this question in B
upvoted 1 times
...
guha_saheb
6 months, 1 week ago
Selected Answer: A
it will take time but the solution is met
upvoted 1 times
...
SolimanAlali
6 months, 1 week ago
Selected Answer: A
The Start-ADSyncSyncCycle PowerShell cmdlet is used to trigger a synchronization cycle between the on-premises Active Directory and Azure Active Directory. -PolicyType Initial: This parameter forces a full synchronization of all objects from the on-premises Active Directory to Azure AD. It includes all changes and ensures that the newly created user is replicated to Azure AD. Since the goal is to replicate the new user information to Azure AD immediately, running this cmdlet with the -PolicyType Initial parameter meets the requirement. We can use Start-ADSyncSyncCycle: -PolicyType Delta: Use this for incremental syncs, which only synchronize the changes since the last sync. It is faster and sufficient in most cases. -PolicyType Initial: Use this for a full sync. It processes all objects and is typically used when there are significant changes, such as schema updates or large-scale object additions.
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 ...