Variable de Get RoleDatacenterServiceEndpoint | {foreach Escritura ExchangeSetupLog-Info ("Agregar extremo de variable" + ...

Variable de Get RoleDatacenterServiceEndpoint * |          {foreach          Escritura ExchangeSetupLog-Info ("Agregar extremo de variable" + $_.Nombre);          $epName = $_.Name.Substring ("RoleDatacenterServiceEndpoint".Longitud);          $epXml = [xml] $_.Valor;          $epUrl = $epXml.ServiceEndpoint.Url;          $epUrlTemplate = $epXml.ServiceEndpoint.UrlTemplate;          $epToken = $epXml.ServiceEndpoint.Token;          $epCert = $epXml.ServiceEndpoint.CertificateSubjectName;          $epAdditionalKeywords = $epXml.ServiceEndpoint.AdditionalKeywords;          Si ([string]:: IsNullorEmpty($epUrl))          {          Escritura ExchangeSetupLog-Info (llamar a New-ServiceEndPoint extremo $epName con la plantilla de la dirección URL $epUrlTemplate, símbolo (token) $epToken y $epCert del sujeto del certificado");          Nuevo ServiceEndpoint-nombre de $epName - UrlTemplate $epUrlTemplate-Token $epCert $epToken - CertificateSubjectName - AdditionalKeywords $epAdditionalKeywords - DomainController $RoleDomainController;          }          Else          {          Escritura ExchangeSetupLog-Info ("llamar a New-ServiceEndPoint extremo $epName con la dirección URL $epUrl, plantilla de dirección URL $epUrlTemplate, asunto de $epToken y el certificado de símbolo (token) $epCert");          Nuevo ServiceEndpoint-Name $epName-Url $epUrl - UrlTemplate $epUrlTemplate-Token $epCert $epToken - CertificateSubjectName - AdditionalKeywords $epAdditionalKeywords - DomainController $RoleDomainController;          }          }