mirror of
https://github.com/MicrosoftDocs/windows-itpro-docs.git
synced 2025-05-12 21:37:22 +00:00
more changes
This commit is contained in:
parent
0606d937c7
commit
0d0cf9c20f
@ -4,6 +4,7 @@
|
||||
|
||||
## Overview
|
||||
### [What's new in Surface Hub 2S](surface-hub-2s-whats-new.md)
|
||||
### [Surface Hub 2S tech specs](surface-hub-2s-techspecs.md)
|
||||
|
||||
## Plan
|
||||
### Surface Hub 2S Site Readiness Guide
|
||||
@ -17,6 +18,8 @@
|
||||
### [Create Surface Hub 2S device account](surface-hub-2s-account.md)
|
||||
### [Deploy Surface Hub 2S](surface-hub-2s-deploy.md)
|
||||
### [Configure Surface Hub 2S with PowerShell](surface-hub-2s-configure-with-powershell.md)
|
||||
### [Configure Surface Hub 2S on-premises accounts with PowerShell](surface-hub-2s-onprem-powershell.md)
|
||||
|
||||
|
||||
|
||||
## Manage
|
||||
@ -25,7 +28,7 @@
|
||||
### [Servicing and updating for Surface Hub 2S](surface-hub-2s-service-update.md)
|
||||
|
||||
## Secure
|
||||
### [Conditional access for Surface Hub 2S](surface-hub-2s-conditional-access.md)
|
||||
|
||||
### [Securing Surface Hub 2S with SEMM](surface-hub-2s-secure-with-semm.md)
|
||||
### [Securing Surface Hub 2S with UEFI](surface-hub-2s-secure-with-uefi.md)
|
||||
|
||||
|
@ -11,4 +11,67 @@ ms.topic: article
|
||||
ms.localizationpriority: Normal
|
||||
---
|
||||
|
||||
# Manage Surface Hub 2S with Intune
|
||||
# Manage Surface Hub 2S with Intune
|
||||
|
||||
|
||||
|
||||
## Register Surface Hub 2S with Intune
|
||||
|
||||
Surface Hub 2S allows IT administrators to manage settings and policies using a mobile device management (MDM) provider. Surface Hub 2S has a built-in management component to communicate with the management server, so there is no need to install additional clients on the device.
|
||||
|
||||
**Manual registration**
|
||||
|
||||
1. Sign in as a local administrator on Surface Hub 2S and open the **Settings** app. Click **Surface Hub** > **Device management** and then click **+** to add.
|
||||
2. After authenticating, the device will automatically register with Intune.
|
||||
|
||||
|
||||
*Figure 1. Register Surface Hub 2S with Intune*
|
||||

|
||||
|
||||
**Auto registration — Azure Active Directory Affiliated**
|
||||
When affiliating Surface Hub 2S with a tenant that has Intune auto enrollment enabled, the device will automatically enroll with Intune.
|
||||
|
||||
## Windows 10 Team Edition settings
|
||||
|
||||
Select Windows 10 Team for preset device restriction settings for Surface Hub and Surface Hub 2S.
|
||||
|
||||
*Figure 2. Set device restriction settings Surface Hub 2S*
|
||||

|
||||
|
||||
These settings include user experience and app behavior, Azure Log Analytics registration, Maintenance windows configuration, Session settings and Miracast settings.
|
||||
|
||||
## Additional supported configuration service providers
|
||||
|
||||
For a list of all available configuration service providers (CSPs), see [SurfaceHub CSP](https://docs.microsoft.com/en-us/windows/client-management/mdm/surfacehub-csp).
|
||||
|
||||
**Quality of Service (QoS) settings**
|
||||
To ensure optimal video and audio quality on Surface Hub 2S, add the following QoS settings to the device. The settings are identical for Skype for Business and Teams.
|
||||
|
||||
| Name | Description | OMA-URI | Type | Value |
|
||||
| ----------- | ------------------- | ----------------------------------------------------------------------- | ------- | ----------- |
|
||||
| Audio Ports | Audio Port range | ./Device/Vendor/MSFT/NetworkQoSPolicy/HubAudio/SourcePortMatchCondition | String | 50000-50019 |
|
||||
| Audio DSCP | Audio ports marking | ./Device/Vendor/MSFT/NetworkQoSPolicy/HubAudio/DSCPAction | Integer | 46 |
|
||||
| Video Ports | Video Port range | ./Device/Vendor/MSFT/NetworkQoSPolicy/HubVideo/SourcePortMatchCondition | String | 50020-50039 |
|
||||
| Video DSCP | Video ports marking | ./Device/Vendor/MSFT/NetworkQoSPolicy/HubVideo/DSCPAction | Integer | 34 |
|
||||
|
||||
|
||||
NOTE: These are the default port ranges. Administrators may change the port ranges in the Skype for Business and Teams control panel.
|
||||
|
||||
**Microsoft Teams Mode settings**
|
||||
You can set the Microsoft Teams app mode using Intune. Surface Hub 2S comes installed with Microsoft Teams in mode 0, which supports both Microsoft Teams and Skype for Business. You can adjust the modes as shown below.
|
||||
|
||||
Modes:
|
||||
|
||||
- Mode 0 – Skype for Business with Microsoft Teams functionality for scheduled meetings.
|
||||
- Mode 1 – Microsoft Teams with Skype for Business functionality for scheduled meetings.
|
||||
- Mode 2 – Microsoft Teams only.
|
||||
|
||||
To set modes, add the following settings to a custom Device Configuration Profile.
|
||||
|
||||
| Name | Description | OMA-URI | Type | Value |
|
||||
| -------------- | ----------- | --------------------------------------------------------- | ------- | ----------------------------------------------------------- |
|
||||
| Teams App ID | App name | ./Vendor/MSFT/SurfaceHub/Properties/VtcAppPackageId | String | Microsoft.MicrosoftTeamsforSurfaceHub_8wekyb3d8bbwe!Teams |
|
||||
| Teams App Mode | Teams mode | ./Vendor/MSFT/SurfaceHub/Properties/SurfaceHubMeetingMode | Integer | 0 or 1 or 2 |
|
||||
|
||||
#
|
||||
|
||||
|
@ -17,7 +17,14 @@ ms.localizationpriority: Normal
|
||||
> [!NOTE]
|
||||
> It is important that you know the FQDN of the Client Access service of the on-premises Exchange server.
|
||||
|
||||
```PowerShell
|
||||
$ExchServer = Read-Host "Please Enter the FQDN of your Exchange Server"
|
||||
$ExchSession = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri http://$ExchServer/PowerShell/ -Authentication Kerberos -Credential (Get-Credential)
|
||||
Import-PSSession $ExchSession
|
||||
```
|
||||
|
||||
|
||||
```PowerShell
|
||||
$ExchServer = Read-Host "Please Enter the FQDN of your Exchange Server"
|
||||
$ExchSession = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri http://$ExchServer/PowerShell/ -Authentication Kerberos -Credential (Get-Credential)
|
||||
Import-PSSession $ExchSession
|
||||
@ -25,13 +32,13 @@ Import-PSSession $ExchSession
|
||||
|
||||
## Create the device account
|
||||
|
||||
```
|
||||
```PowerShell
|
||||
New-Mailbox -UserPrincipalName Hub01@contoso.com -Alias Hub01 -Name "Hub 01" -Room -EnableRoomMailboxAccount $true -RoomMailboxPassword (ConvertTo-SecureString -String <password> -AsPlainText -Force)
|
||||
```
|
||||
|
||||
## Set automatic calendar processing
|
||||
|
||||
```
|
||||
```PowerShell
|
||||
Set-CalendarProcessing -Identity "HUB01@contoso.com" -AutomateProcessing AutoAccept -AddOrganizerToSubject $false –AllowConflicts $false –DeleteComments $false -DeleteSubject $false -RemovePrivateProperty $false -AddAdditionalResponse $true -AdditionalResponse "This room is equipped with a Surface Hub"
|
||||
```
|
||||
|
||||
@ -40,7 +47,7 @@ Set-CalendarProcessing -Identity "HUB01@contoso.com" -AutomateProcessing AutoAcc
|
||||
> [!NOTE]
|
||||
> It is important that you know the FQDN of the Skype for Business Registrar Pool.
|
||||
|
||||
```
|
||||
```PowerShell
|
||||
Enable-CsMeetingRoom -Identity Contoso\HUB01 -SipAddressType emailaddress -RegistrarPool SfbIEFE01.contoso.local
|
||||
```
|
||||
|
||||
@ -50,7 +57,7 @@ You may need to create a new Mobile Device Mailbox Policy (also known as ActiveS
|
||||
|
||||
## Create a Surface Hub mobile device mailbox policy
|
||||
|
||||
```
|
||||
```PowerShell
|
||||
New-MobileDeviceMailboxPolicy -Name “Surface Hubs” -PasswordEnabled $false
|
||||
```
|
||||
|
||||
@ -58,6 +65,6 @@ New-MobileDeviceMailboxPolicy -Name “Surface Hubs” -PasswordEnabled $false
|
||||
|
||||
It is recommended to add a MailTip to Surface Hub rooms so users remember to make the meeting a Skype for Business or Teams meeting:
|
||||
|
||||
```
|
||||
```PowerShell
|
||||
Set-Mailbox "Surface Hub 2S" -MailTip "This is a Surface Hub room. Please make sure this is a Microsoft Teams meeting."
|
||||
```
|
||||
|
Loading…
x
Reference in New Issue
Block a user