Get-CsAdDomain

 

Topic Last Modified: 2012-03-23

Returns information indicating whether Active Directory Domain Services (AD DS) has been correctly configured to allow for the installation of Microsoft Lync Server 2010.

Syntax

Get-CsAdDomain [-Domain <Fqdn>] [-DomainController <Fqdn>] [-GlobalCatalog <Fqdn>] [-GlobalSettingsDomainController <Fqdn>] [-Report <String>]

Detailed Description

Before you can install Lync Server 2010 your domain must be correctly prepared, a process that includes extending the Active Directory schema to allow for the addition of attributes specific to Lync Server, in addition to assigning the required Access Control Entries to the universal groups used for managing and operating Lync Server. The Get-CsAdDomain cmdlet returns a single value that tells you whether or not Lync Server can be installed on a domain. If Get-CsAdDomain returns the value LC_DOMAINSETTINGS_STATE_READY then you can install Lync Server on that domain. If the cmdlet returns LC_DOMAINSETTINGS_STATE_NOT_READY then you will need to correctly prepare the domain before trying to install Lync Server.

Get-CsAdDomain runs as part of the Setup Wizard. If the Wizard determines that the domain is not correctly prepared, an error message is displayed and setup will stop. However, you can run Get-CsAdDomain independently of the Setup Wizard in order to verify the domain status before you try to install Lync Server.

Get-CsAdDomain performs the same function as the following Microsoft Office Communications Server 2007 R2 command:

Lcscmd.exe /domain /action:CheckDomainPrepState

Who can run this cmdlet: By default, any user who has read permissions to Active Directory can run the Get-CsAdDomain cmdlet. Typically all domain members have this permission.

Get-CsAdminRole | Where-Object {$_.Cmdlets –match "Get-CsAdDomain"}

Parameters

Parameter Required Type Description

Domain

Optional

String

Fully qualified domain name (FQDN) of the domain to be checked; for example: -Domain "litwareinc.com". If this parameter is not specified, then the local domain will be checked.

DomainController

Optional

String

Enables administrators to specify the FQDN of the domain controller to be used when running Get-CsAdDomain. If not specified, the cmdlet will use the first available domain controller.

GlobalCatalog

Optional

String

FQDN of a global catalog server in your domain. This parameter is not required if you are running Get-CsAdDomain on a computer with an account in your domain.

GlobalSettingsDomainController

Optional

String

FQDN of a domain controller where global settings are stored. If global settings are stored in the System container in Active Directory, then this parameter must point to the root domain controller. If global settings are stored in the Configuration container, then any domain controller can be used and this parameter can be omitted.

Report

Optional

String

Enables you to specify a file path for the log file created when the cmdlet runs. For example: -Report "C:\Logs\DomainPrep.html"

Input Types

None. Get-CsAdDomain does not accept pipelined input.

Return Types

Get-CsAdDomain returns instances of the Microsoft.Rtc.Management.Deployment.LcDomainSettingsState object.

Example

-------------------------- Example 1 --------------------------

Get-CsAdDomain

The preceding example returns information regarding the current status of your local Active Directory domain. If your domain settings are up-to-date, and the domain is ready to host Lync Server 2010, the value LC_DOMAIN_SETTINGS_STATE_READY will be returned.

-------------------------- Example 2 --------------------------

Get-CsAdDomain -Domain "fabrikam.com" 

The command shown in Example 2 returns the current status of a specific domain: fabrikam.com. In a multi-domain environment, you can return information for a given domain by including the Domain parameter.

-------------------------- Example 3 --------------------------

Get-CsAdDomain -Report "C:\Logs\DomainReport.html"

Example 3 retrieves the current status of your Active Directory domain and, at the same time, writes information about that status to a file named C:\Logs\DomainReport.html. This file will detail the steps taken by Get-CsAdDomain to determine the readiness status for the domain. Those steps include tasks such as verifying the existence of Active Directory groups and checking permission settings on various Active Directory containers.

See Also

Other Resources

Disable-CsAdDomain
Enable-CsAdDomain