使用Azure Runbook和PowerShell在部署期间,有没有办法将Azure VM添加到Active Directory域?
我在Azure中有一个使用PowerShell的Runbook。 PowerShell调用模板来部署VM,如下所示。我更喜欢使用PowerShell而不是ARM模板,有没有办法做到这一点?
New-AzureRmResourceGroupDeployment -ResourceGroupName $resourcegroup `
-TemplateUri $vm_template_uri -TemplateParameterObject $ServerParameters
答案 0 :(得分:0)
这对我来说很好用: How to join a VM to a domain by PowerShell in Azure
$DomainName = "your_domain_name"
$VMName = "your_VM_Name"
$credential = Get-Credential your_Domain_account
$ResourceGroupName = "your_RG_name"
Set-AzVMADDomainExtension -DomainName $DomainName -VMName $VMName -Credential $credential -ResourceGroupName $ResourceGroupName -JoinOption 0x00000001 -Restart -Verbose