Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed powershell syntax for surface hub account #25

Open
wants to merge 1 commit into
base: public
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions surface-hub/online-deployment-surface-hub-device-accounts.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ If you have a pure, online (O365) deployment, then you can [use the provided Pow
4. Various Exchange properties must be set on the device account to improve the meeting experience. You can see which properties need to be set in the [Exchange properties](exchange-properties-for-surface-hub-device-accounts.md) section.

```PowerShell
Set-CalendarProcessing -Identity '[email protected]' -AutomateProcessing AutoAccept -AddOrganizerToSubject $false AllowConflicts $false DeleteComments $false -DeleteSubject $false -RemovePrivateProperty $false
Set-CalendarProcessing -Identity '[email protected]' -AutomateProcessing AutoAccept -AddOrganizerToSubject $false -AllowConflicts $false -DeleteComments $false -DeleteSubject $false -RemovePrivateProperty $false
Set-CalendarProcessing -Identity '[email protected]' -AddAdditionalResponse $true -AdditionalResponse "This is a Surface Hub room!"
```

Expand Down Expand Up @@ -129,8 +129,8 @@ If you have a pure, online (O365) deployment, then you can [use the provided Pow
OR by setting a variable

```PowerShell
$strRegistrarPool = Get-CsOnlineUser -Identity '[email protected]' | fl registrarpool | out-string
$strRegistrarPool = $strRegistrarPool.Substring($strRegistrarPool.IndexOf(':') + 2)
$strRegistrarPool = Get-CsOnlineUser -Identity '[email protected]' | fl registrarpool | out-string
$strRegistrarPool = $strRegistrarPool.Substring($strRegistrarPool.IndexOf(':') + 2)
```

- Enable the Surface Hub account with the following cmdlet:
Expand Down