Guest_Domain

Guest_Domain
Guest_Domain

The Domain structure specifies the information needed to join a workgroup or domain. This structure maps to the Identification key in the sysprep.xml answer file. These values are transferred into the sysprep.xml file that VirtualCenter stores on the target virtual disk. For more information about performing unattended installation, check https://technet.microsoft.com/en-us/library/cc771830(v=ws.10).aspx

JSON Example
{
    "type": "string",
    "workgroup": "string",
    "domain": "string",
    "domain_username": "string",
    "domain_password": "string"
}
type
Required

The Domain.Type enumerated type defines the types of network the virtual machine should join to after the customization is completed.
WORKGROUP : The virtual machine should be be joined to a workgroup.
DOMAIN : The virtual machine should be be joined to a domain.

string
workgroup
Optional

The workgroup that the virtual machine should join. This field is optional and it is only relevant when the value of Domain.type is WORKGROUP.

string
domain
Optional

The domain to which the virtual machine should be joined. This field is optional and it is only relevant when the value of Domain.type is DOMAIN.

string
domain_username
Optional

The domain user that has permission to join the domain after virtual machine is joined. This field is optional and it is only relevant when the value of Domain.type is DOMAIN.

string As password
domain_password
Optional

The domain user password that has permission to join the Domain.domain-username after customization. This field is optional and it is only relevant when the value of Domain.type is DOMAIN.