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

Unlimited Access

Get Unlimited Contributor Access to the all ExamTopics Exams!
Take advantage of PDF Files for 1000+ Exams along with community discussions and pass IT Certification Exams Easily.

Exam AZ-104 topic 4 question 80 discussion

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

HOTSPOT -
You have an Azure subscription. The subscription contains a virtual machine that runs Windows 10.
You need to join the virtual machine to an Active Directory domain.
How should you complete the Azure Resource Manager (ARM) template? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
Hot Area:

Show Suggested Answer Hide Answer
Suggested Answer:
Box 1: "Microsoft.Compute/VirtualMachines/extensions",
The following JSON example uses the Microsoft.Compute/virtualMachines/extensions resource type to install the Active Directory domain join extension.
Parameters are used that you specify at deployment time. When the extension is deployed, the VM is joined to the specified managed domain.
Box 2: "ProtectedSettings":{
Example:
{
"apiVersion": "2015-06-15",
"type": "Microsoft.Compute/virtualMachines/extensions",
"name": "[concat(parameters('dnsLabelPrefix'),'/joindomain')]",
"location": "[parameters('location')]",
"dependsOn": [
"[concat('Microsoft.Compute/virtualMachines/', parameters('dnsLabelPrefix'))]"
],
"properties": {
"publisher": "Microsoft.Compute",
"type": "JsonADDomainExtension",
"typeHandlerVersion": "1.3",
"autoUpgradeMinorVersion": true,
"settings": {
"Name": "[parameters('domainToJoin')]",
"OUPath": "[parameters('ouPath')]",
"User": "[concat(parameters('domainToJoin'), '\\', parameters('domainUsername'))]",
"Restart": "true",
"Options": "[parameters('domainJoinOptions')]"
},
"protectedSettings": {
"Password": "[parameters('domainPassword')]"
}
}
}
Reference:
https://docs.microsoft.com/en-us/azure/active-directory-domain-services/join-windows-vm-template

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
ExamTopicsTST
Highly Voted 1 year, 7 months ago
Answer is correct. https://docs.microsoft.com/en-us/azure/active-directory-domain-services/join-windows-vm-template
upvoted 35 times
...
EmnCours
Highly Voted 1 year, 7 months ago
Correct Answer: box1: Microsoft.Compute/virtualMachines/extensions box2: protectedSettings https://docs.microsoft.com/en-us/azure/active-directory-domain-services/join-windows-vm-template#azure-resource-manager-template-overview
upvoted 14 times
...
Amir1909
Most Recent 1 month, 2 weeks ago
Correct
upvoted 1 times
...
devops_devops
3 months ago
This question was in exam 15/01/24
upvoted 6 times
...
PrepaCertif
5 months ago
came on exam 16th November 2023, answer is correct
upvoted 6 times
...
lulzsec2019
9 months, 1 week ago
topic 4 question 81 is missing.
upvoted 5 times
...
zellck
1 year, 2 months ago
1. Microsoft.Compute/virtualMachines/extensions 2. ProtectedSettings https://learn.microsoft.com/en-us/azure/active-directory-domain-services/join-windows-vm-template#azure-resource-manager-template-overview The following JSON example uses the Microsoft.Compute/virtualMachines/extensions resource type to install the Active Directory domain join extension.
upvoted 4 times
...
UK7
1 year, 3 months ago
Came on 21st Dec 2022 Exam Answer is correct
upvoted 7 times
...
Mev4953
1 year, 7 months ago
https://docs.microsoft.com/en-us/azure/active-directory-domain-services/join-windows-vm-template#:~:text=example%20uses%20the-,Microsoft.Compute/virtualMachines/extensions,-resource%20type%20to
upvoted 2 times
...
qwerty100
1 year, 7 months ago
Correct Answer: box1: Microsoft.Compute/virtualMachines/extensions box2: protectedSettings https://docs.microsoft.com/en-us/azure/active-directory-domain-services/join-windows-vm-template#azure-resource-manager-template-overview
upvoted 2 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 ...