mirror of
https://github.com/MicrosoftDocs/windows-itpro-docs.git
synced 2025-05-30 22:27:23 +00:00
Update online-deployment-surface-hub-device-accounts.md
This commit is contained in:
parent
9b0b385981
commit
861fc522d6
@ -124,13 +124,13 @@ If you have a pure, online (O365) deployment, then you can [use the provided Pow
|
|||||||
- Next, if you aren't sure what value to use for the `RegistrarPool` parameter in your environment, you can get the value from an existing Skype for Business user using this cmdlet (for example, <em>alice@contoso.com</em>):
|
- Next, if you aren't sure what value to use for the `RegistrarPool` parameter in your environment, you can get the value from an existing Skype for Business user using this cmdlet (for example, <em>alice@contoso.com</em>):
|
||||||
|
|
||||||
```PowerShell
|
```PowerShell
|
||||||
(Get-CsTenant).TenantPoolExtension
|
Get-CsOnlineUser -Identity 'alice@contoso.com' | fl registrarpool
|
||||||
```
|
```
|
||||||
OR by setting a variable
|
OR by setting a variable
|
||||||
|
|
||||||
```PowerShell
|
```PowerShell
|
||||||
$strRegistrarPool = (Get-CsTenant).TenantPoolExtension
|
$strRegistrarPool = Get-CsOnlineUser -Identity 'alice@contoso.com' | fl registrarpool | out-string
|
||||||
$strRegistrarPool = $strRegistrarPool[0].Substring($strRegistrarPool[0].IndexOf(':') + 1)
|
$strRegistrarPool = $strRegistrarPool.Substring($strRegistrarPool.IndexOf(':') + 2)
|
||||||
```
|
```
|
||||||
|
|
||||||
- Enable the Surface Hub account with the following cmdlet:
|
- Enable the Surface Hub account with the following cmdlet:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user