Finding the right Registrar Pool

If running the existing command, you'll get: 
PS C:\WINDOWS\system32> (Get-CsTenant).TenantPoolExtension
MCOProfessional:sippoolDB42E08.infra.lync.com

If running the right command, you'll get:
PS C:\WINDOWS\system32> (Get-CsTenant).RegistrarPool
sippoolDB42E08.infra.lync.com

Otherwise, the script will forever fail.
This commit is contained in:
y0avb
2017-12-16 18:13:32 +00:00
committed by GitHub
parent c1ff60a530
commit b0dbe45c41

View File

@ -1568,7 +1568,7 @@ if ($online)
{
try {
$strRegPool = $null;
$strRegPool = (Get-CsTenant).TenantPoolExtension
$strRegPool = (Get-CsTenant).RegistrarPool
} catch {}
if ($Error)
{