mirror of
https://github.com/MicrosoftDocs/windows-itpro-docs.git
synced 2025-05-15 14:57:23 +00:00
Merge pull request #334 from MicrosoftDocs/surface-2s-update-robmazz
Basic formatting and style guide changes
This commit is contained in:
commit
2b49490900
@ -10,6 +10,7 @@ audience: Admin
|
||||
ms.topic: article
|
||||
ms.localizationpriority: Normal
|
||||
---
|
||||
|
||||
# Configure Surface Hub 2S accounts via PowerShell
|
||||
|
||||
## Connect to Exchange Online PowerShell
|
||||
@ -21,13 +22,14 @@ ms.localizationpriority: Normal
|
||||
## Create a new Room Mailbox
|
||||
|
||||
```PowerShell
|
||||
New-Mailbox -MicrosoftOnlineServicesID account@YourDomain.com -Alias SurfaceHub2S -Name SurfaceHub2S -Room -EnableRoomMailboxAccount $true -RoomMailboxPassword (ConvertTo-SecureString -String "<Enter Strong Password>" -AsPlainText -Force)
|
||||
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
|
||||
```PowerShell
|
||||
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
|
||||
|
||||
```PowerShell
|
||||
@ -35,10 +37,10 @@ Connect-MsolService
|
||||
Set-Msoluser -UserPrincipalName account@YourDomain.com -UsageLocation IE
|
||||
Set-MsolUserLicense -UserPrincipalName "account@YourDomain.com" -AddLicenses "contoso:MEETING_ROOM"
|
||||
```
|
||||
|
||||
# Connecting to Skype for Business Online using PowerShell
|
||||
|
||||
**Install prerequisites**
|
||||
## Connecting to Skype for Business Online using PowerShell
|
||||
|
||||
### Install prerequisites
|
||||
|
||||
- [Visual C++ 2017 Redistributable](https://aka.ms/vs/15/release/vc_redist.x64.exe)
|
||||
- [Skype for Business Online PowerShell Module](https://www.microsoft.com/en-us/download/confirmation.aspx?id=39366)
|
||||
@ -50,9 +52,10 @@ Set-MsolUserLicense -UserPrincipalName "account@YourDomain.com" -AddLicenses "co
|
||||
Enable the Skype for Business meeting room
|
||||
Enable-CsMeetingRoom -Identity account@YourDomain.com -RegistrarPoo(Get-CsTenant).Registrarpool -SipAddressType EmailAddress
|
||||
```
|
||||
|
||||
# Configuring on-premises accounts using PowerShell
|
||||
## Connect to Exchange Server PowerShell
|
||||
|
||||
## Configuring on-premises accounts using PowerShell
|
||||
|
||||
### Connect to Exchange Server PowerShell
|
||||
|
||||
> [!NOTE]
|
||||
> It is important that you know the FQDN of the Client Access service of the on-premises Exchange server.
|
||||
@ -63,32 +66,32 @@ Set-MsolUserLicense -UserPrincipalName "account@YourDomain.com" -AddLicenses "co
|
||||
Import-PSSession $ExchSession
|
||||
```
|
||||
|
||||
## Create the device account
|
||||
```PowerShell
|
||||
### 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
|
||||
### 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"
|
||||
```
|
||||
```
|
||||
|
||||
## Enable the Skype for Business object
|
||||
### Enable the Skype for Business object
|
||||
|
||||
> [!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
|
||||
```
|
||||
|
||||
# Mobile Device Mailbox Policy
|
||||
## Mobile Device Mailbox Policy
|
||||
|
||||
You may need to create a new Mobile Device Mailbox Policy (also known as ActiveSync Policy) to allow your Surface Hub to connect to your online or on-premises environment.
|
||||
|
||||
|
||||
## Create a Surface Hub mobile device mailbox policy
|
||||
### Create a Surface Hub mobile device mailbox policy
|
||||
```PowerShell
|
||||
New-MobileDeviceMailboxPolicy -Name “Surface Hubs” -PasswordEnabled $false
|
||||
```
|
||||
@ -98,5 +101,5 @@ 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."
|
||||
```
|
||||
Set-Mailbox "Surface Hub 2S" -MailTip "This is a Surface Hub room. Please make sure this is a Microsoft Teams meeting."
|
||||
```
|
@ -94,4 +94,4 @@ You can connect the following accessories to Surface Hub-2S using Bluetooth:
|
||||
> [!NOTE]
|
||||
> After you connect a Bluetooth headset or speaker, you might need to change the default microphone and speaker settings. For more information, see [Local management for Surface Hub settings](https://docs.microsoft.com/en-us/surface-hub/local-management-surface-hub-settings).
|
||||
|
||||
# Learn more
|
||||
## Learn more
|
||||
|
@ -18,17 +18,19 @@ ms.localizationpriority: Normal
|
||||
You can use Windows Configuration Designer (WCD) to create provisioning packages to automate the deployment process of Surface Hub 2S. Use provisioning packages to add certificates, configure proxies, set up device administrators and device accounts. You can also use provisioning packages in conjunction with a configuration file to deploy multiple Surface Hubs with a single USB thumb drive.
|
||||
|
||||
### Install Windows Configuration Designer
|
||||
|
||||
Install Windows Configuration Designer from the Windows Assessment and Deployment Kit (ADK) for Windows 10. Download and install the ADK for Windows 10, version 1703.
|
||||
|
||||
### Add certificates
|
||||
|
||||
You can import Certificate Authority certificates to Surface Hub 2S.
|
||||
To add certificates to Surface Hub 2S, you’ll need a copy of each certificate as X.509 in .cer format. You cannot import .crt, .pfx or other container formats.
|
||||
Certificates must be imported into Windows Configuration Designer and arranged by hierarchy:
|
||||
|
||||

|
||||
|
||||
|
||||
### Configure proxy during OOBE
|
||||
|
||||
In Windows Configuration Designer, go to the Configure proxy settings tab and enter the appropriate settings as shown below.
|
||||
|
||||

|
||||
@ -37,22 +39,30 @@ In Windows Configuration Designer, go to the Configure proxy settings tab and en
|
||||
> **When configuring proxy settings, turn off **Automatically detect settings** if you intend to use a setup script or a proxy server. You can use a setup script *or* a proxy server, not both.
|
||||
|
||||
### Affiliate Surface Hub 2S with Azure Active Directory
|
||||
|
||||
You can affiliate Surface Hub 2S with Azure Active Directory using a provisioning package:
|
||||
As an Azure Active Directory Global Administrator, you can join large numbers of new Windows devices to Azure Active Directory and Intune using a bulk token.
|
||||
|
||||
|
||||
To create a bulk token, give it a friendly name, configure the expiration date (maximum of 30 days) and use your Admin credentials to acquire the token as shown below:
|
||||
|
||||
|
||||
 <br>
|
||||
<br>
|
||||
 <br>
|
||||
|
||||
### Provisioning multiple devices (.csv file)
|
||||
|
||||
In addition to the provisioning package, you can use a Surface Hub configuration file to make it even easier to set up your devices. A Surface Hub configuration file contains a list of device accounts and friendly names for wireless projection. During first run, you’ll get an option to choose a device account and friendly name from a configuration file.
|
||||
|
||||
### To create a Surface Hub configuration file
|
||||
|
||||
1. Using Microsoft Excel or another CSV editor, create a CSV file named: **SurfaceHubConfiguration.csv**
|
||||
2. Enter a list of device accounts and friendly names in this format: **<DeviceAccountName>,<DeviceAccountPassword>,<FriendlyName>**
|
||||
|
||||
2. Enter a list of device accounts and friendly names in this format:
|
||||
|
||||
```
|
||||
<DeviceAccountName>,<DeviceAccountPassword>,<FriendlyName>
|
||||
```
|
||||
|
||||
3. Save the file to the root of the USB thumb drive where you copied the PPKG file.
|
||||
|
||||

|
||||
|
@ -13,11 +13,11 @@ ms.localizationpriority: Normal
|
||||
|
||||
# Install and mount Surface Hub 2S
|
||||
|
||||
# Certified Steelcase solution
|
||||
## Certified Steelcase solution
|
||||
|
||||
You can mount Surface Hub 2S with the certified wall mount or the certified mobile stand, both developed in partnership with Steelcase. Both fully integrate with the design of Surface Hub 2S, enabling unimpeded access to the compute cartridge along with all I/O ports and power. For more information, see [Steelcase Roam specifications](https://www.steelcase.com/content/uploads/2019/05/Steelcase-Roam-Spec-Guide.pdf).
|
||||
|
||||
# Customized solution
|
||||
## Customized solution
|
||||
|
||||
As an alternative, you can customize your own mounting solution. This section includes information to help you install and mount Surface Hub 2S and is for customers not using third party mounting features.
|
||||
|
||||
|
@ -13,6 +13,8 @@ ms.localizationpriority: Normal
|
||||
|
||||
# Surface Hub 2S tech specs
|
||||
|
||||
## General specs
|
||||
|
||||
| Item | Details |
|
||||
| ---- | ------- |
|
||||
| **Size** | 29.2" x 43.2" x 3.0” (741 mm x 1097 mm x 76 mm) |
|
||||
@ -77,5 +79,4 @@ ms.localizationpriority: Normal
|
||||
| **DC output** | 24 V DC, Max 16.2 A /387 W |
|
||||
|
||||
> [!NOTE]
|
||||
> <sup>1</sup> System software uses significant storage space. Available storage is subject to change based on system software updates and apps usage. 1 GB= 1 billion bytes. See Surface.com/Storage for more details. <br> <sup>2</sup> Software license required for some features. Sold separately.<br>
|
||||
<sup>3</sup> Tilt functionality is currently available
|
||||
> <sup>1</sup> System software uses significant storage space. Available storage is subject to change based on system software updates and apps usage. 1 GB= 1 billion bytes. See Surface.com/Storage for more details. <br> <sup>2</sup> Software license required for some features. Sold separately.<br> <sup>3</sup> Tilt functionality is currently available
|
@ -13,6 +13,8 @@ ms.localizationpriority: Normal
|
||||
|
||||
# Unpack Surface Hub 2S
|
||||
|
||||
## Unpacking the Surface Hub 2S
|
||||
|
||||
Before you remove Surface Hub 2S from the box, make sure you have your mounting solution assembled and someone available to help you.
|
||||
|
||||
1. Use the handles on each side of the box to move it to the space where you'll set it up.
|
||||
@ -24,10 +26,9 @@ Before you remove Surface Hub 2S from the box, make sure you have your mounting
|
||||
7. Align the installed hardware with the slots on the mount so it rests firmly in place.
|
||||
8. Follow any further instructions that came with your mounting solution.
|
||||
|
||||
## Install pen and camera**
|
||||
## Install pen and camera
|
||||
|
||||
1. Unwrap your Surface Hub 2 pen and attach it magnetically to your preferred side of the device.
|
||||
2. Remove the lens cling from the camera and attach it to the USB-C port on the top of the Surface Hub 2S.
|
||||
3. Insert the power cable into the back of the device and plug it into a power outlet. Run the cable through any cable guides on your mounting solution and remove the screen clang.
|
||||
4. To begin, press the power button on the bottom right.
|
||||
|
||||
4. To begin, press the power button on the bottom right.
|
@ -14,7 +14,6 @@ localizationpriority: medium
|
||||
|
||||
People in your organization can sign in to a Surface Hub without a password using the Microsoft Authenticator app, available on Android and iOS.
|
||||
|
||||
|
||||
## Organization prerequisites
|
||||
|
||||
To let people in your organization sign in to Surface Hub with their phones and other devices instead of a password, you’ll need to make sure that your organization meets these prerequisites:
|
||||
@ -33,23 +32,23 @@ To let people in your organization sign in to Surface Hub with their phones and
|
||||
|
||||
- Surface Hub is set up with either a local or domain-joined account.
|
||||
|
||||
Currently, you cannot use Microsoft Authenticator to sign in to Surface Hubs that are joined to Azure AD.
|
||||
Currently, you cannot use Microsoft Authenticator to sign in to Surface Hubs that are joined to Azure AD.
|
||||
|
||||
## Individual prerequisites
|
||||
|
||||
- An Android phone running 6.0 or later, or an iPhone or iPad running iOS9 or later
|
||||
|
||||
- The most recent version of the Microsoft Authenticator app from the appropriate app store
|
||||
- The most recent version of the Microsoft Authenticator app from the appropriate app store
|
||||
|
||||
>[!NOTE]
|
||||
>On iOS, the app version must be 5.4.0 or higher.
|
||||
>
|
||||
>The Microsoft Authenticator app on phones running a Windows operating system can't be used to sign in to Surface Hub.
|
||||
|
||||
|
||||
- Passcode or screen lock on your device is enabled
|
||||
|
||||
- A standard SMTP email address (example: joe@contoso.com). Non-standard or vanity SMTP email addresses (example: firstname.lastname@contoso.com) currently don’t work.
|
||||
|
||||
|
||||
## How to set up the Microsoft Authenticator app
|
||||
|
||||
>[!NOTE]
|
||||
@ -59,10 +58,8 @@ Currently, you cannot use Microsoft Authenticator to sign in to Surface Hubs tha
|
||||
|
||||
1. Add your work or school account to Microsoft Authenticator for Multi-Factor Authentication. You will need a QR code provided by your IT department. For help, see [Get started with the Microsoft Authenticator app](https://docs.microsoft.com/azure/multi-factor-authentication/end-user/microsoft-authenticator-app-how-to).
|
||||
2. Go to **Settings** and register your device.
|
||||
1. Return to the accounts page and choose **Enable phone sign-in** from the account dropdown menu.
|
||||
3. Return to the accounts page and choose **Enable phone sign-in** from the account dropdown menu.
|
||||
|
||||
|
||||
<span id="signin" />
|
||||
## How to sign in to Surface Hub during a meeting
|
||||
|
||||
1. After you’ve set up a meeting, go to the Surface Hub and select **Sign in to see your meetings and files**.
|
||||
@ -75,14 +72,13 @@ Currently, you cannot use Microsoft Authenticator to sign in to Surface Hubs tha
|
||||
2. You’ll see a list of the people invited to the meeting. Select yourself (or the person who wants to sign in – make sure this person has gone through the steps to set up their device before your meeting), and then select **Continue**.
|
||||
|
||||

|
||||
|
||||
|
||||
You'll see a code on the Surface Hub.
|
||||
|
||||
|
||||

|
||||
|
||||
|
||||
3. To approve the sign-in, open the Authenticator app, enter the four-digit code that’s displayed on the Surface Hub, and select **Approve**. You will then be asked to enter the PIN or use your fingerprint to complete the sign in.
|
||||
|
||||

|
||||
|
||||
You can now access all files through the OneDrive app.
|
||||
|
||||
You can now access all files through the OneDrive app.
|
Loading…
x
Reference in New Issue
Block a user