Prepare the initial computer hosting BEMS
BEMS
When you create a trusted application pool for the installation of
BEMS
, you also create the trusted-computer entry. Subsequent installations of BEMS
machines do not require a new trusted application pool or designated trusted applications because they are added to the existing trusted application pool. Verify that the account that you use to complete this task is a member of the RTCUniversalServerAdmins group.
- Log in to the computer that hosts theSkype for Business.
- Open theManagement Shell.
- On the computer that hostsSkype for Business, create the trusted application pool.
- To obtain the SiteID of yourSkype for Business, run the following command. Record the SiteID.Get-CsSite
- To display the Registrar service value for a selected site, run the following command. Record the Registrar service value.Get-CsSite <SiteID> | Select-Object -ExpandProperty Services
- To configure the trusted application entry for the newly created trusted application pool forBEMS, run the following command:New-CsTrustedApplicationPool -Force -Identity <YourPoolFQDN> -Registrar <registrar> -RequiresReplication $false -Site <SiteID> -ComputerFQDN <BEMSFQDN>
- Where <YourPoolFQDN> is the desired FQDN of the virtual Application pool of theBEMSinstances.
- Where <SiteID> is the SiteID that was recorded in step 3a.
- Where <registrar> is the value recorded in step 3b.
- Where <BEMSFQDN> is the FQDN of computer hostingBEMS.
For example,New-CsTrustedApplicationPool -Force -Identity BEMSAppPool.mycompany.com -Registrar registrar.mycompany.com -RequiresReplication $false -Site 1 -ComputerFQDN BEMSHost.mycompany.com