Topic Last Modified: 2012-01-16

To successfully complete this procedure you should be logged on as a user who is a member of the RTCUniversalServerAdmins group.

You can use the Get-CsKerberosAccountAssignment cmdlet to query information about the Kerberos authentication account assignments and report information about the current assignments in your deployment.

To query Kerberos authentication account assignments for a site

  1. As a member of the RTCUniversalServerAdmins group, log on to a computer in the domain running Lync Server 2013 or on to a computer where the administrative tools are installed.

  2. Start the Lync Server Management Shell: Click Start, click All Programs, click Microsoft Lync Server 2013, and then click Lync Server Management Shell.

  3. From the command line, run one of the following commands:

    • To query all Kerberos authentication account assignments in your organization and return assignment information about each of them, run the cmdlet without any parameters:

      Copy Code
      Get-CsKerberosAccountAssignment
      
    • To query all Kerberos authentication account assignments in your deployment and return site assignment information about each of them, run the cmdlet with the Identity parameter:

      Copy Code
      Get-CsKerberosAccountAssignment -Identity "site:SiteName"
      

      For example:

      Copy Code
      Get-CsKerberosAccountAssignment -Identity "site:Redmond"
      
    • To query all Kerberos authentication account assignments in a single site and return assignment information about each of them, run the cmdlet with the Filter parameter:

      Copy Code
      Get-CsKerberosAccountAssignment -Filter "SiteName"
      

      For example:

      Copy Code
      Get-CsKerberosAccountAssignment -Filter "*Redmond"
      
      Note:
      Specifying *SiteName for the Filter parameter returns information about all sites that contain the specified site name anywhere in the site identifier (for example, all sites that contain the string Redmond in the site identifier).