windows-itpro-docs/devices/surface-hub/surface-hub-2s-configure-with-powershell.md
2019-06-05 08:23:06 -07:00

2.1 KiB
Raw Blame History

title, description, keywords, ms.prod, ms.sitesec, author, ms.author, audience, ms.topic, ms.localizationpriority
title description keywords ms.prod ms.sitesec author ms.author audience ms.topic ms.localizationpriority
Configure Surface Hub 2S accounts with PowerShell Learn how to configure Surface Hub 2S accounts with PowerShell separate values with commas surface-hub library robmazz robmazz Admin article Normal

Configure Surface Hub 2S online accounts with PowerShell

Connect to Exchange Online PowerShell

$365Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell -Credential (Get-Credential) -Authentication Basic AllowRedirection $ImportResults = Import-PSSession $365Session

Create a new Room Mailbox

New-Mailbox -MicrosoftOnlineServicesID account@YourDomain.com -Alias SurfaceHub2S -Name SurfaceHub2S -Room -EnableRoomMailboxAccount $true -RoomMailboxPassword (ConvertTo-SecureString  -String "<Enter Strong Password>" -AsPlainText -Force)

Set Calendar Auto processing

Set-CalendarProcessing -Identity "account@YourDomain.com" -AutomateProcessing AutoAccept -AddOrganizerToSubject $false AllowConflicts   $false DeleteComments $false -DeleteSubject $false -RemovePrivateProperty $false -AddAdditionalResponse $true -AdditionalResponse "This room is equipped with a Surface Hub"

Assign a license

Connect-MsolService
Set-Msoluser -UserPrincipalName account@YourDomain.com -UsageLocation IE
Set-MsolUserLicense -UserPrincipalName "account@YourDomain.com" -AddLicenses "contoso:MEETING_ROOM"

Connect to Skype for Business Online using PowerShell

Install prerequisites

Import-Module LyncOnlineConnector
$SfBSession = New-CsOnlineSession -Credential (Get-Credential)
Import-PSSession $SfBSession -AllowClobber
Enable the Skype for Business meeting room
Enable-CsMeetingRoom -Identity account@YourDomain.com -RegistrarPoo(Get-CsTenant).Registrarpool -SipAddressType EmailAddress