From 6b2c7a7f78cc58cb270de68f5ee96c457a6448e1 Mon Sep 17 00:00:00 2001 From: jdeckerMS Date: Thu, 3 Nov 2016 13:50:25 -0700 Subject: [PATCH 01/18] add hybrid SfB content --- .../surface-hub/change-history-surface-hub.md | 1 + ...-deployment-surface-hub-device-accounts.md | 21 +++++++++++++++++-- 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/devices/surface-hub/change-history-surface-hub.md b/devices/surface-hub/change-history-surface-hub.md index a753773f2f..1c7164694c 100644 --- a/devices/surface-hub/change-history-surface-hub.md +++ b/devices/surface-hub/change-history-surface-hub.md @@ -19,6 +19,7 @@ This topic lists new and updated topics in the [Surface Hub Admin Guide]( surfac | New or changed topic | Description | | --- | --- | | [Differences between Surface Hub and Windows 10 Enterprise](differences-between-surface-hub-and-windows-10-enterprise.md) | New | +| [Hybrid deployment](hybrid-deployment-surface-hub-device-accounts.md) | Added instructions for creating accounts for Surface Hub in a Skype for Business hybrid environment. | ## RELEASE: Windows Anniversary Update for Surface Hub (Windows 10, version 1607) The topics in this library have been updated for Windows 10, version 1607 (also known as Windows Anniversary Update for Surface Hub). These topics had significant updates for this release: diff --git a/devices/surface-hub/hybrid-deployment-surface-hub-device-accounts.md b/devices/surface-hub/hybrid-deployment-surface-hub-device-accounts.md index 798952d528..eb296f6509 100644 --- a/devices/surface-hub/hybrid-deployment-surface-hub-device-accounts.md +++ b/devices/surface-hub/hybrid-deployment-surface-hub-device-accounts.md @@ -12,7 +12,7 @@ localizationpriority: medium --- # Hybrid deployment (Surface Hub) -A hybrid deployment requires special processing in order to set up a device account for your Microsoft Surface Hub. If you’re using a hybrid deployment, in which your organization has a mix of services, with some hosted on-premises and some hosted online, then your configuration will depend on where each service is hosted. This topic covers hybrid deployments for [Exchange hosted on-prem](#exchange-on-prem), and [Exchange hosted online](#exchange-online). Because there are so many different variations in this type of deployment, it's not possible to provide detailed instructions for all of them. The following process will work for many configurations. If the process isn't right for your setup, we recommend that you use PowerShell (see [Appendix: PowerShell](appendix-a-powershell-scripts-for-surface-hub.md)) to achieve the same end result as documented here, and for other deployment options. You should then use the provided Powershell script to verify your Surface Hub setup. (See [Account Verification Script](appendix-a-powershell-scripts-for-surface-hub.md#acct-verification-ps-scripts).) +A hybrid deployment requires special processing in order to set up a device account for your Microsoft Surface Hub. If you’re using a hybrid deployment, in which your organization has a mix of services, with some hosted on-premises and some hosted online, then your configuration will depend on where each service is hosted. This topic covers hybrid deployments for [Exchange hosted on-prem](#exchange-on-prem), [Exchange hosted online](#exchange-online), and [Skype for Business hybrid](#skype-for-business-hybrid). Because there are so many different variations in this type of deployment, it's not possible to provide detailed instructions for all of them. The following process will work for many configurations. If the process isn't right for your setup, we recommend that you use PowerShell (see [Appendix: PowerShell](appendix-a-powershell-scripts-for-surface-hub.md)) to achieve the same end result as documented here, and for other deployment options. You should then use the provided Powershell script to verify your Surface Hub setup. (See [Account Verification Script](appendix-a-powershell-scripts-for-surface-hub.md#acct-verification-ps-scripts).) ## Exchange on-prem Use this procedure if you use Exchange on-prem. @@ -313,4 +313,21 @@ Use this procedure if you use Exchange online. >**Note** You can also use the Windows Azure Active Directory Module for Windows PowerShell to run the cmdlets needed to assign one of these licenses, but that's not covered here. -For validation, you should be able to use any Skype for Business client (PC, Android, etc) to log in to this account. \ No newline at end of file +For validation, you should be able to use any Skype for Business client (PC, Android, etc) to log in to this account. + +## Skype for Business hybrid + +If your organization has set up [hybrid connectivity between Skype for Business Server and Skype for Business Online](https://technet.microsoft.com/library/jj205403.aspx), the guidance for creating accounts differs from a standard Surface Hub deployment. + +The Surface Hub requires a Skype account of the type *meetingroom*, while a normal user would use a *user* type account in Skype. If your Skype server is set up for hybrid where you might have users on the local Skype server as well as users hosted in Office 365, you might run into a few issues when trying to create a Surface Hub account. + +In a hybrid Skype environment, you have to create the user on-prem first, then move the user to the cloud. This means that your user is present in both environments (which makes SIP routing possible). The move from on-prem to online is done via the [Move-CsUser](https://technet.microsoft.com/library/gg398528.aspx) cmdlet which can only be used against user type accounts, not meetingroom type accounts. Because of this, you will not be able to move a Surface Hub account that has a meetingroom type of account. You might think of using the [Move-CsMeetingRoom](https://technet.microsoft.com/library/jj204889.aspx?f=255&MSPPError=-2147217396) cmdlet, unfortunately this will not work between the on-prem Skype server and Office 365 - it only works across on-prem Skype pools. + +In order to have a functional Surface Hub account in a Skype hybrid configuration, create the Skype account as a normal user type account, instead of creating the account as a meetingroom. First follow the Exchange steps - either [online](#exchange-online) or [on-prem](#exchange-on-prem) - and, instead of enabling the user for Skype for Business Online as described, [enable the account](https://technet.microsoft.com/library/gg398711.aspx) on the on-prem Skype server: + +``` +Enable-CsUser -Identity "Pilar Ackerman" -RegistrarPool "atl-cs-001.litwareinc.com" -SipAddressType UserPrincipalName +``` + +After the Surface Hub account is enabled for Skype for Business on-premises, you can keep the account on-premises or you can move the Surface Hub account to Office 365, using the Move-CsUser cmdlet. [Learn more about moving a Skype user to Office 365](https://technet.microsoft.com/library/jj204969.aspx). + From 3bb0d5913b360849f9c7482277020aef37f1b470 Mon Sep 17 00:00:00 2001 From: jdeckerMS Date: Thu, 10 Nov 2016 12:56:18 -0800 Subject: [PATCH 02/18] in progress --- ...-deployment-surface-hub-device-accounts.md | 32 +++++++++++-------- 1 file changed, 18 insertions(+), 14 deletions(-) diff --git a/devices/surface-hub/hybrid-deployment-surface-hub-device-accounts.md b/devices/surface-hub/hybrid-deployment-surface-hub-device-accounts.md index eb296f6509..fc73979df8 100644 --- a/devices/surface-hub/hybrid-deployment-surface-hub-device-accounts.md +++ b/devices/surface-hub/hybrid-deployment-surface-hub-device-accounts.md @@ -12,7 +12,7 @@ localizationpriority: medium --- # Hybrid deployment (Surface Hub) -A hybrid deployment requires special processing in order to set up a device account for your Microsoft Surface Hub. If you’re using a hybrid deployment, in which your organization has a mix of services, with some hosted on-premises and some hosted online, then your configuration will depend on where each service is hosted. This topic covers hybrid deployments for [Exchange hosted on-prem](#exchange-on-prem), [Exchange hosted online](#exchange-online), and [Skype for Business hybrid](#skype-for-business-hybrid). Because there are so many different variations in this type of deployment, it's not possible to provide detailed instructions for all of them. The following process will work for many configurations. If the process isn't right for your setup, we recommend that you use PowerShell (see [Appendix: PowerShell](appendix-a-powershell-scripts-for-surface-hub.md)) to achieve the same end result as documented here, and for other deployment options. You should then use the provided Powershell script to verify your Surface Hub setup. (See [Account Verification Script](appendix-a-powershell-scripts-for-surface-hub.md#acct-verification-ps-scripts).) +A hybrid deployment requires special processing to set up a device account for your Microsoft Surface Hub. If you’re using a hybrid deployment, in which your organization has a mix of services, with some hosted on-premises and some hosted online, then your configuration will depend on where each service is hosted. This topic covers hybrid deployments for [Exchange hosted on-prem](#exchange-on-prem), [Exchange hosted online](#exchange-online), and [Skype for Business hybrid](#skype-for-business-hybrid). Because there are so many different variations in this type of deployment, it's not possible to provide detailed instructions for all of them. The following process will work for many configurations. If the process isn't right for your setup, we recommend that you use PowerShell (see [Appendix: PowerShell](appendix-a-powershell-scripts-for-surface-hub.md)) to achieve the same end result as documented here, and for other deployment options. You should then use the provided Powershell script to verify your Surface Hub setup. (See [Account Verification Script](appendix-a-powershell-scripts-for-surface-hub.md#acct-verification-ps-scripts).) ## Exchange on-prem Use this procedure if you use Exchange on-prem. @@ -52,26 +52,31 @@ Use this procedure if you use Exchange on-prem. ```ps1 Set-ExecutionPolicy Unrestricted - $org='contoso.com' - $cred=Get-Credential $admin@$org + $cred=Get-Credential -Message "Please use your Office 365 admin credentials" $sess= New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri 'https://outlook.office365.com/ps1-liveid/' -Credential $cred -Authentication Basic -AllowRedirection Import-PSSession $sess ``` 5. Create a new Exchange ActiveSync policy, or use a compatible existing policy. + After setting up the mailbox, you will need to either create a new Exchange ActiveSync policy or use a compatible existing policy. + Surface Hubs are only compatible with device accounts that have an ActiveSync policy where the **PasswordEnabled** property is set to False. If this isn’t set properly, then Exchange services on the Surface Hub (mail, calendar, and joining meetings), will not be enabled. - If you haven’t created a compatible policy yet, use the following cmdlet—this one creates a policy called "Surface Hubs". Once it’s created, you can apply the same policy to other device accounts. + If you haven’t created a compatible policy yet, use the following cmdlet—-this one creates a policy called "Surface Hubs". Once it’s created, you can apply the same policy to other device accounts. ```ps1 $easPolicy = New-MobileDeviceMailboxPolicy -Name “SurfaceHubs” -PasswordEnabled $false ``` - Once you have a compatible policy, then you will need to apply the policy to the device account. + Once you have a compatible policy, then you will need to apply the policy to the device account. However, policies can only be applied to user accounts and not to resource mailboxes. You'll need to convert the mailbox into a user type, apply the policy, and then convert it back into a mailbox; you may need to re-enable it and set the password again too. ```ps1 + Set-Mailbox 'HUB01@contoso.com' -Type Regular Set-CASMailbox 'HUB01@contoso.com' -ActiveSyncMailboxPolicy $easPolicy + Set-Mailbox 'HUB01@contoso.com' -Type Room + $credNewAccount = Get-Credential -Message “Please provide the Surface Hub username and password” + Set-Mailbox 'HUB01@contoso.com' -RoomMailboxPassword $credNewAccount.Password -EnableRoomMailboxAccount $true ``` 6. Set Exchange properties. @@ -105,18 +110,18 @@ Use this procedure if you use Exchange on-prem. Set-MsolUserLicense -UserPrincipalName 'HUB01@contoso.com' -AddLicenses $strLicense ``` -9. Enable the device account with Skype for Business. +9. Enable the device account with Skype for Business Online, Skyp for Business on-prem, or Skype hybrid. - In order to enable Skype for Business, your environment will need to meet the following prerequisites: + To enable Skype for Business online, your environment will need to meet the following prerequisites: - You'll need to have Lync Online (Plan 2) or higher in your O365 plan. The plan needs to support conferencing capability. - If you need Enterprise Voice (PSTN telephony) using telephony service providers for the Surface Hub, you need Lync Online (Plan 3). - - Your tenant users must have Exchange mailboxes. + - Your tenant users must have Exchange mailboxes (at least one Exchange mailbox in the tenant is required). - Your Surface Hub account does require a Lync Online (Plan 2) or Lync Online (Plan 3) license, but it does not require an Exchange Online license. - - Start by creating a remote PowerShell session from a PC. + - Start by creating a remote PowerShell session from a PC to the Skype for Business online environment. ```ps1 Import-Module LyncOnlineConnector @@ -127,14 +132,13 @@ Use this procedure if you use Exchange on-prem. - To enable your Surface Hub account for Skype for Business Server, run this cmdlet: ```ps1 - Enable-CsMeetingRoom -Identity $rm -RegistrarPool - 'sippoolbl20a04.infra.lync.com&' -SipAddressType EmailAddress + Enable-CsMeetingRoom -Identity 'HUB01@contoso.com' -RegistrarPool 'sippoolbl20a04.infra.lync.com' -SipAddressType UserPrincipalName ``` 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: ```ps1 - Get-CsOnlineUser -Identity ‘alice@contoso.com’| fl *registrarpool* + Get-CsOnlineUser -Identity ‘HUB01@contoso.com’| fl *registrarpool* ``` 10. Assign Skype for Business license to your Surface Hub account. @@ -154,7 +158,7 @@ Use this procedure if you use Exchange on-prem. >**Note** You can also use the Windows Azure Active Directory Module for Windows Powershell to run the cmdlets needed to assign one of these licenses, but that's not covered here. -For validation, you should be able to use any Skype for Business client (PC, Android, etc) to log in to this account. +For validation, you should be able to use any Skype for Business client (PC, Android, etc.) to sign in to this account. ## Exchange online Use this procedure if you use Exchange online. @@ -313,7 +317,7 @@ Use this procedure if you use Exchange online. >**Note** You can also use the Windows Azure Active Directory Module for Windows PowerShell to run the cmdlets needed to assign one of these licenses, but that's not covered here. -For validation, you should be able to use any Skype for Business client (PC, Android, etc) to log in to this account. +For validation, you should be able to use any Skype for Business client (PC, Android, etc) to sign in to this account. ## Skype for Business hybrid From 8f0641c1cc11ce5289c26768c0e9bbc89239691b Mon Sep 17 00:00:00 2001 From: jdeckerMS Date: Fri, 11 Nov 2016 12:06:49 -0800 Subject: [PATCH 03/18] Ervin changes --- ...-deployment-surface-hub-device-accounts.md | 81 ++++++++++++++----- 1 file changed, 61 insertions(+), 20 deletions(-) diff --git a/devices/surface-hub/hybrid-deployment-surface-hub-device-accounts.md b/devices/surface-hub/hybrid-deployment-surface-hub-device-accounts.md index fc73979df8..e24c18ea31 100644 --- a/devices/surface-hub/hybrid-deployment-surface-hub-device-accounts.md +++ b/devices/surface-hub/hybrid-deployment-surface-hub-device-accounts.md @@ -110,10 +110,12 @@ Use this procedure if you use Exchange on-prem. Set-MsolUserLicense -UserPrincipalName 'HUB01@contoso.com' -AddLicenses $strLicense ``` -9. Enable the device account with Skype for Business Online, Skyp for Business on-prem, or Skype hybrid. +Next, you enable the device account with [Skype for Business Online](#skype-for-business-online), [Skype for Business on-prem](#skype-for-business-on-prem), or [Skype for Business hybrid](#skype-for-business-hybrid). + +### Skype for Business Online To enable Skype for Business online, your environment will need to meet the following prerequisites: - - You'll need to have Lync Online (Plan 2) or higher in your O365 plan. The plan needs to support conferencing capability. + - You need to have Lync Online (Plan 2) or higher in your O365 plan. The plan needs to support conferencing capability. - If you need Enterprise Voice (PSTN telephony) using telephony service providers for the Surface Hub, you need Lync Online (Plan 3). @@ -121,7 +123,7 @@ Use this procedure if you use Exchange on-prem. - Your Surface Hub account does require a Lync Online (Plan 2) or Lync Online (Plan 3) license, but it does not require an Exchange Online license. - - Start by creating a remote PowerShell session from a PC to the Skype for Business online environment. +1. Start by creating a remote PowerShell session from a PC to the Skype for Business online environment. ```ps1 Import-Module LyncOnlineConnector @@ -129,7 +131,7 @@ Use this procedure if you use Exchange on-prem. Import-PSSession $cssess -AllowClobber ``` - - To enable your Surface Hub account for Skype for Business Server, run this cmdlet: +2. To enable your Surface Hub account for Skype for Business Server, run this cmdlet: ```ps1 Enable-CsMeetingRoom -Identity 'HUB01@contoso.com' -RegistrarPool 'sippoolbl20a04.infra.lync.com' -SipAddressType UserPrincipalName @@ -141,7 +143,7 @@ Use this procedure if you use Exchange on-prem. Get-CsOnlineUser -Identity ‘HUB01@contoso.com’| fl *registrarpool* ``` -10. Assign Skype for Business license to your Surface Hub account. +2. Assign Skype for Business license to your Surface Hub account. Once you've completed the preceding steps to enable your Surface Hub account in Skype for Business Online, you need to assign a license to the Surface Hub. Using the O365 administrative portal, assign either a Skype for Business Online (Plan 2) or a Skype for Business Online (Plan 3) to the device. - Login as a tenant administrator, open the O365 Administrative Portal, and click on the Admin app. @@ -160,6 +162,31 @@ Use this procedure if you use Exchange on-prem. For validation, you should be able to use any Skype for Business client (PC, Android, etc.) to sign in to this account. +### Skype for Business on-prem + +To run this cmdlet, you will need to connect to one of the Skype front-ends. Open the Skype PowerShell and run: + +``` +Enable-CsMeetingRoom -Identity 'HUB01@contoso.com' -RegistrarPool registrarpoolfqdn -SipAddressType UserPrincipalName +``` + +### Skype for Business hybrid + +If your organization has set up [hybrid connectivity between Skype for Business Server and Skype for Business Online](https://technet.microsoft.com/library/jj205403.aspx), the guidance for creating accounts differs from a standard Surface Hub deployment. + +The Surface Hub requires a Skype account of the type `meetingroom`, while a normal user would use a user type account in Skype. If your Skype server is set up for hybrid where you might have users on the local Skype server as well as users hosted in Office 365, you might run into a few issues when trying to create a Surface Hub account. + +In a hybrid Skype environment, you have to create the user on-prem first, then move the user to the cloud. This means that your user is present in both environments (which makes SIP routing possible). The move from on-prem to online is done via the [Move-CsUser](https://technet.microsoft.com/library/gg398528.aspx) cmdlet which can only be used against user type accounts, not meetingroom type accounts. Because of this, you will not be able to move a Surface Hub account that has a meetingroom type of account. You might think of using the [Move-CsMeetingRoom](https://technet.microsoft.com/library/jj204889.aspx?f=255&mspperror=-2147217396) cmdlet, unfortunately this will not work between the on-prem Skype server and Office 365 - it only works across on-prem Skype pools. + +To have a functional Surface Hub account in a Skype hybrid configuration, create the Skype account as a normal user type account, instead of creating the account as a meetingroom. Enable the account on the on-prem Skype server first: + +``` +Enable-CsUser -Identity 'HUB01@contoso.com' -RegistrarPool "registrarpoolfqdn" -SipAddressType UserPrincipalName +``` + +After the Surface Hub account is enabled for Skype for Business on-premises, you can keep the account on-premises or you can move the Surface Hub account to Office 365, using the Move-CsUser cmdlet. [Learn more about moving a Skype user to Office 365.](https://technet.microsoft.com/library/jj204969.aspx) + + ## Exchange online Use this procedure if you use Exchange online. @@ -169,8 +196,7 @@ Use this procedure if you use Exchange online. ```ps1 Set-ExecutionPolicy Unrestricted - $org='contoso.microsoft.com' - $cred=Get-Credential $admin@$org + $cred=Get-Credential -Message "Please use your Office 365 admin credentials" $sess= New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/ps1-liveid/ -Credential $cred -Authentication Basic -AllowRedirection Import-PSSession $sess ``` @@ -206,9 +232,10 @@ Use this procedure if you use Exchange online. Once you have a compatible policy, then you will need to apply the policy to the device account. However, policies can only be applied to user accounts and not resource mailboxes. You need to convert the mailbox into a user type, apply the policy, and then convert it back into a mailbox—you may need to re-enable it and set the password again too. ```ps1 - Set-Mailbox $acctUpn -Type Regular + Set-Mailbox 'HUB01@contoso.com' -Type Regular Set-CASMailbox 'HUB01@contoso.com' -ActiveSyncMailboxPolicy $easPolicy Set-Mailbox 'HUB01@contoso.com' -Type Room + $credNewAccount = Get-Credential -Message "Please provide the Surface Hub username and password" Set-Mailbox 'HUB01@contoso.com' -RoomMailboxPassword $credNewAccount.Password -EnableRoomMailboxAccount $true ``` @@ -266,19 +293,22 @@ Use this procedure if you use Exchange online. Set-MsolUserLicense -UserPrincipalName 'HUB01@contoso.com' -AddLicenses $strLicense ``` -9. Enable the device account with Skype for Business. +Next, you enable the device account with [Skype for Business Online](#sfb-online), [Skype for Business on-prem](#sfb-onprem), or [Skype for Business hybrid](#sfb-hybrid). - In order to enable Skype for Business, your environment will need to meet the following prerequisites: + +### Skype for Business Online + +In order to enable Skype for Business, your environment will need to meet the following prerequisites: - You'll need to have Lync Online (Plan 2) or higher in your O365 plan. The plan needs to support conferencing capability. - If you need Enterprise Voice (PSTN telephony) using telephony service providers for the Surface Hub, you need Lync Online (Plan 3). - - Your tenant users must have Exchange mailboxes. + - Your tenant users must have Exchange mailboxes (at least one Exchange mailbox in the tenant is required). - Your Surface Hub account does require a Lync Online (Plan 2) or Lync Online (Plan 3) license, but it does not require an Exchange Online license. - Start by creating a remote PowerShell session from a PC. +1. Start by creating a remote PowerShell session to the Skype for Business online environment from a PC. ```ps1 Import-Module LyncOnlineConnector @@ -286,24 +316,24 @@ Use this procedure if you use Exchange online. Import-PSSession $cssess -AllowClobber ``` - To enable your Surface Hub account for Skype for Business Server, run this cmdlet: +2. To enable your Surface Hub account for Skype for Business Server, run this cmdlet: ```ps1 - Enable-CsMeetingRoom -Identity $rm -RegistrarPool - 'sippoolbl20a04.infra.lync.com' -SipAddressType EmailAddress + Enable-CsMeetingRoom -Identity 'HUB01@contoso.com' -RegistrarPool + 'sippoolbl20a04.infra.lync.com' -SipAddressType UserPrincipalName ``` 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: ```ps1 - Get-CsOnlineUser -Identity ‘alice@contoso.com’| fl *registrarpool* + Get-CsOnlineUser -Identity 'HUB01@contoso.com'| fl *registrarpool* ``` 10. Assign Skype for Business license to your Surface Hub account Once you've completed the preceding steps to enable your Surface Hub account in Skype for Business Online, you need to assign a license to the Surface Hub. Using the O365 administrative portal, assign either a Skype for Business Online (Plan 2) or a Skype for Business Online (Plan 3) to the device. - - Login as a tenant administrator, open the O365 Administrative Portal, and click on the Admin app. + - Sign in as a tenant administrator, open the O365 Administrative Portal, and click on the Admin app. - Click on **Users and Groups** and then **Add users, reset passwords, and more**. @@ -315,11 +345,22 @@ Use this procedure if you use Exchange online. - Click **Save**. - >**Note** You can also use the Windows Azure Active Directory Module for Windows PowerShell to run the cmdlets needed to assign one of these licenses, but that's not covered here. + >[!NOTE] + > You can also use the Windows Azure Active Directory Module for Windows PowerShell to run the cmdlets needed to assign one of these licenses, but that's not covered here. For validation, you should be able to use any Skype for Business client (PC, Android, etc) to sign in to this account. -## Skype for Business hybrid + +### Skype for Business on-prem + +To run this cmdlet, you will need to connect to one of the Skype front-ends. Open the Skype PowerShell and run: + +``` +Enable-CsMeetingRoom -Identity 'HUB01@contoso.com' -RegistrarPool registrarpoolfqdn -SipAddressType UserPrincipalName +``` + + +### Skype for Business hybrid If your organization has set up [hybrid connectivity between Skype for Business Server and Skype for Business Online](https://technet.microsoft.com/library/jj205403.aspx), the guidance for creating accounts differs from a standard Surface Hub deployment. @@ -330,7 +371,7 @@ In a hybrid Skype environment, you have to create the user on-prem first, then m In order to have a functional Surface Hub account in a Skype hybrid configuration, create the Skype account as a normal user type account, instead of creating the account as a meetingroom. First follow the Exchange steps - either [online](#exchange-online) or [on-prem](#exchange-on-prem) - and, instead of enabling the user for Skype for Business Online as described, [enable the account](https://technet.microsoft.com/library/gg398711.aspx) on the on-prem Skype server: ``` -Enable-CsUser -Identity "Pilar Ackerman" -RegistrarPool "atl-cs-001.litwareinc.com" -SipAddressType UserPrincipalName +Enable-CsUser -Identity 'HUB01@contoso.com' -RegistrarPool "registrarpoolfqdn" -SipAddressType UserPrincipalName ``` After the Surface Hub account is enabled for Skype for Business on-premises, you can keep the account on-premises or you can move the Surface Hub account to Office 365, using the Move-CsUser cmdlet. [Learn more about moving a Skype user to Office 365](https://technet.microsoft.com/library/jj204969.aspx). From 5f938b62ff405e18638ff8653bf7124aedef238f Mon Sep 17 00:00:00 2001 From: jdeckerMS Date: Fri, 11 Nov 2016 12:12:47 -0800 Subject: [PATCH 04/18] pull 62 --- .../hybrid-deployment-surface-hub-device-accounts.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/devices/surface-hub/hybrid-deployment-surface-hub-device-accounts.md b/devices/surface-hub/hybrid-deployment-surface-hub-device-accounts.md index e24c18ea31..8fc0c7894c 100644 --- a/devices/surface-hub/hybrid-deployment-surface-hub-device-accounts.md +++ b/devices/surface-hub/hybrid-deployment-surface-hub-device-accounts.md @@ -73,7 +73,7 @@ Use this procedure if you use Exchange on-prem. ```ps1 Set-Mailbox 'HUB01@contoso.com' -Type Regular - Set-CASMailbox 'HUB01@contoso.com' -ActiveSyncMailboxPolicy $easPolicy + Set-CASMailbox 'HUB01@contoso.com' -ActiveSyncMailboxPolicy $easPolicy.id Set-Mailbox 'HUB01@contoso.com' -Type Room $credNewAccount = Get-Credential -Message “Please provide the Surface Hub username and password” Set-Mailbox 'HUB01@contoso.com' -RoomMailboxPassword $credNewAccount.Password -EnableRoomMailboxAccount $true @@ -233,7 +233,7 @@ Use this procedure if you use Exchange online. ```ps1 Set-Mailbox 'HUB01@contoso.com' -Type Regular - Set-CASMailbox 'HUB01@contoso.com' -ActiveSyncMailboxPolicy $easPolicy + Set-CASMailbox 'HUB01@contoso.com' -ActiveSyncMailboxPolicy $easPolicy.id Set-Mailbox 'HUB01@contoso.com' -Type Room $credNewAccount = Get-Credential -Message "Please provide the Surface Hub username and password" Set-Mailbox 'HUB01@contoso.com' -RoomMailboxPassword $credNewAccount.Password -EnableRoomMailboxAccount $true From 12b1ee343511cdb8412fb20ae16c8e33ad896c13 Mon Sep 17 00:00:00 2001 From: jdeckerMS Date: Fri, 11 Nov 2016 12:26:32 -0800 Subject: [PATCH 05/18] change owner --- .../hybrid-deployment-surface-hub-device-accounts.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/devices/surface-hub/hybrid-deployment-surface-hub-device-accounts.md b/devices/surface-hub/hybrid-deployment-surface-hub-device-accounts.md index 8fc0c7894c..eb0c2a5b63 100644 --- a/devices/surface-hub/hybrid-deployment-surface-hub-device-accounts.md +++ b/devices/surface-hub/hybrid-deployment-surface-hub-device-accounts.md @@ -1,13 +1,13 @@ --- title: Hybrid deployment (Surface Hub) -description: A hybrid deployment requires special processing in order to set up a device account for your Microsoft Surface Hub. +description: A hybrid deployment requires special processing to set up a device account for your Microsoft Surface Hub. ms.assetid: 7BFBB7BE-F587-422E-9CE4-C9DDF829E4F1 keywords: hybrid deployment, device account for Surface Hub, Exchange hosted on-prem, Exchange hosted online ms.prod: w10 ms.mktglfcycl: deploy ms.sitesec: library ms.pagetype: surfacehub -author: TrudyHa +author: jdeckerMS localizationpriority: medium --- From 4be5f9c9846563aa34f719df84c83a7833dbfd91 Mon Sep 17 00:00:00 2001 From: jdeckerMS Date: Fri, 11 Nov 2016 12:39:30 -0800 Subject: [PATCH 06/18] change --- .../hybrid-deployment-surface-hub-device-accounts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devices/surface-hub/hybrid-deployment-surface-hub-device-accounts.md b/devices/surface-hub/hybrid-deployment-surface-hub-device-accounts.md index eb0c2a5b63..0524268638 100644 --- a/devices/surface-hub/hybrid-deployment-surface-hub-device-accounts.md +++ b/devices/surface-hub/hybrid-deployment-surface-hub-device-accounts.md @@ -12,7 +12,7 @@ localizationpriority: medium --- # Hybrid deployment (Surface Hub) -A hybrid deployment requires special processing to set up a device account for your Microsoft Surface Hub. If you’re using a hybrid deployment, in which your organization has a mix of services, with some hosted on-premises and some hosted online, then your configuration will depend on where each service is hosted. This topic covers hybrid deployments for [Exchange hosted on-prem](#exchange-on-prem), [Exchange hosted online](#exchange-online), and [Skype for Business hybrid](#skype-for-business-hybrid). Because there are so many different variations in this type of deployment, it's not possible to provide detailed instructions for all of them. The following process will work for many configurations. If the process isn't right for your setup, we recommend that you use PowerShell (see [Appendix: PowerShell](appendix-a-powershell-scripts-for-surface-hub.md)) to achieve the same end result as documented here, and for other deployment options. You should then use the provided Powershell script to verify your Surface Hub setup. (See [Account Verification Script](appendix-a-powershell-scripts-for-surface-hub.md#acct-verification-ps-scripts).) +A hybrid deployment requires special processing to set up a device account for your Microsoft Surface Hub. If you’re using a hybrid deployment, in which your organization has a mix of services, with some hosted on-premises and some hosted online, then your configuration will depend on where each service is hosted. This topic covers hybrid deployments for [Exchange hosted on-prem](#exchange-on-prem), [Exchange hosted online](#exchange-online), Skype for Business on-prem, Skype for Business online, and Skype for Business hybrid. Because there are so many different variations in this type of deployment, it's not possible to provide detailed instructions for all of them. The following process will work for many configurations. If the process isn't right for your setup, we recommend that you use PowerShell (see [Appendix: PowerShell](appendix-a-powershell-scripts-for-surface-hub.md)) to achieve the same end result as documented here, and for other deployment options. You should then use the provided Powershell script to verify your Surface Hub setup. (See [Account Verification Script](appendix-a-powershell-scripts-for-surface-hub.md#acct-verification-ps-scripts).) ## Exchange on-prem Use this procedure if you use Exchange on-prem. From 0b6375bc3d72ad33aea934ec07d0933dce9653e9 Mon Sep 17 00:00:00 2001 From: jdeckerMS Date: Wed, 16 Nov 2016 12:30:54 -0800 Subject: [PATCH 07/18] 9636712 --- .../connect-and-display-with-surface-hub.md | 90 +++++++++++++----- devices/surface-hub/images/video-out-55.png | Bin 0 -> 11564 bytes devices/surface-hub/images/video-out-84.png | Bin 0 -> 14110 bytes 3 files changed, 66 insertions(+), 24 deletions(-) create mode 100644 devices/surface-hub/images/video-out-55.png create mode 100644 devices/surface-hub/images/video-out-84.png diff --git a/devices/surface-hub/connect-and-display-with-surface-hub.md b/devices/surface-hub/connect-and-display-with-surface-hub.md index 3d1a589760..28001227cc 100644 --- a/devices/surface-hub/connect-and-display-with-surface-hub.md +++ b/devices/surface-hub/connect-and-display-with-surface-hub.md @@ -1,28 +1,42 @@ --- title: Connect other devices and display with Surface Hub -description: You can connect other device to your Surface Hub to display content. This topic describes guest mode and replacement PC modes that is available through a wired connection. +description: You can connect other device to your Surface Hub to display content. ms.assetid: 8BB80FA3-D364-4A90-B72B-65F0F0FC1F0D ms.prod: w10 ms.mktglfcycl: manage ms.sitesec: library ms.pagetype: surfacehub -author: TrudyHa +author: jdeckerMS localizationpriority: medium --- # Connect other devices and display with Surface Hub -You can connect other device to your Surface Hub to display content. This topic describes guest mode and replacement PC modes that is available through a wired connection. +You can connect other devices to your Microsoft Surface Hub to display content. This topic describes the Guest Mode, Replacement PC Mode, and Video Out functionality available through wired connections. -## Guest mode +## Which method should I choose? + +When connecting external devices and displays to a Surface Hub, there are several available options. The method you use will depend upon your scenario and needs. + +| When you want to: | Use this method: | +| --- | --- | +| Mirror the Surface Hub's display on another device. | [Video Out](#video-out) | +| Present another device's display on the Surface Hub screen and interact with both the device's content and the built-in Surface Hub experience. | [Guest Mode](#guest-mode) | +| Power the Surface Hub from an external Windows 10 PC, turning off the embedded computer of the Surface Hub. Cameras, microphones, speakers, and other peripherals, are sent to the external PC, in addition to pen and touch. | [Replacement PC Mode](#replacement-pc-mode) | -Guest mode uses a wired connection, so people can display content from their devices to the Surface Hub. If the source device is Windows based, that device can also provide Touchback and Inkback. Surface Hub's internal PC takes video and audio from the connected device and displays them on the Surface Hub. If Surface Hub encounters an HDCP signal, the source will be re-routed through an alternate path, allowing the source to be displayed full-screen without violating HDCP requirements. +## Guest Mode + + +Guest Mode uses a wired connection, so people can display content from their devices to the Surface Hub. If the source device is Windows-based, that device can also provide Touchback and Inkback. Surface Hub's internal PC takes video and audio from the connected device and presents them on the Surface Hub. If Surface Hub encounters a High-Bandwidth Digital Content Protection (HDCP) signal, the source will be re-routed through an alternate path, allowing the source to be displayed full-screen without violating HDCP requirements. + +>[!NOTE] +>When an HDCP source is connected, use the side keypad to change source inputs. ### Ports -Use these ports on the Surface Hub for the guest mode. +Use these ports on the Surface Hub for Guest Mode. @@ -93,7 +107,7 @@ Use these ports on the Surface Hub for the guest mode. ### Port locations -These are the port connections used for guest mode on the 55" and 84" Surface Hubs. +These are the port connections used for Guest Mode on the 55" and 84" Surface Hubs. ![image showing guest ports on 55" surface hub. ](images/sh-55-guest-ports.png) @@ -105,7 +119,7 @@ Wired port connections on 84" Surface Hub ### Port enumeration -When a Surface hub is connected to guest computer with the wired connect USB port, a number of USB devices are discovered and configured. These peripheral devices are created for touchback and inkback. The peripheral devices can viewed in Device Manager. Device Manager will show duplicate names for some devices. +When a Surface hub is connected to a guest computer with the wired connect USB port, a number of USB devices are discovered and configured. These peripheral devices are created for Touchback and Inkback. The peripheral devices can be viewed in Device Manager. Device Manager will show duplicate names for some devices. **Human interface devices** @@ -137,9 +151,9 @@ When a Surface hub is connected to guest computer with the wired connect USB por - USB composite device -### Guest mode connectivity +### Guest Mode connectivity -Your choice of video cable will be determined by what is available from your source input. The Surface Hub has three choices of video input, DisplayPort, HDMI and VGA. Please refer to the below chart for available resolutions. +Your choice of video cable will be determined by what is available from your source input. The Surface Hub has three choices of video input: DisplayPort, HDMI, and VGA. See the following chart for available resolutions.
@@ -206,9 +220,9 @@ Your choice of video cable will be determined by what is available from your sou   -Source audio is provided by DisplayPort and HDMI cables. If you must use VGA, Surface Hub has an audio input port that uses a 3.5 mm plug. Surface Hub also uses a USB cable that provides touch and inkback from the Surface Hub to compatible Windows 10 devices. The USB cable can be used with any video input that is already connected with a cable. +Source audio is provided by DisplayPort and HDMI cables. If you must use VGA, Surface Hub has an audio input port that uses a 3.5 mm plug. Surface Hub also uses a USB cable that provides Touchback and Inkback from the Surface Hub to compatible Windows 10 devices. The USB cable can be used with any video input that is already connected with a cable. -Someone using guest mode to connect a PC would use one of these options: +Someone using Guest Mode to connect a PC would use one of these options: **DisplayPort** -- DisplayPort cable and USB 2.0 cable @@ -216,16 +230,16 @@ Someone using guest mode to connect a PC would use one of these options: **VGA** -- VGA cable, 3.5 mm audio cable, and USB 2.0 cable -If the computer you are using for guest mode is not compatible with Touch and Inkback, then you won't need the USB cable. +If the computer you are using for Guest Mode is not compatible with Touchback and Inkback, then you won't need the USB cable. -## Replacement PC mode +## Replacement PC Mode -In replacement PC mode, the embedded computer of the Surface Hub is turned off and an external PC is connected to the Surface Hub. Connections to replacement PC ports give access to key peripherals on the Surface Hub, including the screen, pen, and touch features. This does mean that your Surface Hub won’t have the benefit of the Windows Team experience, but you will have the flexibility offered by providing and managing your own Windows computer. +In Replacement PC Mode, the embedded computer of the Surface Hub is turned off and an external PC is connected to the Surface Hub. Connections to replacement PC ports give access to key peripherals on the Surface Hub, including the screen, pen, and touch features. This does mean that your Surface Hub won’t have the benefit of the Windows Team experience, but you will have the flexibility offered by providing and managing your own Windows computer. ### Software requirements -You can run Surface Hub in replacement PC mode with 64-bit versions of Windows 10 Home, Windows 10 Pro and Windows 10 Enterprise. You can download the [Surface Hub Replacement PC driver package](https://www.microsoft.com/download/details.aspx?id=52210) from the Microsoft download center. We recommend that you install these drivers on any computer you plan to use as a replacement PC. +You can run Surface Hub in Replacement PC Mode with 64-bit versions of Windows 10 Home, Windows 10 Pro, and Windows 10 Enterprise. You can download the [Surface Hub Replacement PC driver package](https://www.microsoft.com/download/details.aspx?id=52210) from the Microsoft Download Center. We recommend that you install these drivers on any computer you plan to use as a replacement PC. ### Hardware requirements @@ -233,7 +247,7 @@ Surface Hub is compatible with a range of hardware. Choose the processor and mem ### Graphics adapter -In replacement PC mode, Surface Hub supports any graphics adapter that can produce a DisplayPort signal. You'll improve your experience with a graphics adapter that can match Surface Hub's resolution and refresh rate. For example, the best and recommended replacement PC experience on the Surface Hub is with a 120Hz video signal. +In Replacement PC Mode, Surface Hub supports any graphics adapter that can produce a DisplayPort signal. You'll improve your experience with a graphics adapter that can match Surface Hub's resolution and refresh rate. For example, the best and recommended replacement PC experience on the Surface Hub is with a 120Hz video signal. **55" Surface Hubs** - For best experience, use a graphics card capable of 1080p resolution at 120Hz. @@ -272,7 +286,7 @@ Check directly with graphics card vendors for the latest drivers. ### Ports -Replacement PC ports on 55" Surface Hub. +Replacement PC ports on 55" Surface Hub ![image showing replacement pc ports on 55" surface hub. ](images/sh-55-rpc-ports.png) @@ -329,7 +343,7 @@ Replacement PC ports on 55" Surface Hub.   -Replacement PC ports on 84" Surface Hub. +Replacement PC ports on 84" Surface Hub ![image showing replacement pc ports on 84" surface hub. ](images/sh-84-rpc-ports.png) @@ -388,13 +402,12 @@ Replacement PC ports on 84" Surface Hub. ### Replacement PC setup instructions -**To use replacement PC mode** +**To use Replacement PC Mode** 1. Download and install the [Surface Hub Replacement PC driver package](https://www.microsoft.com/download/details.aspx?id=52210) on the replacement PC. - **Note**  We recommend that you set sleep or hibernation on the replacement PC so the Surface Hub will turn off the display when it isn't being used. - -   + >[!NOTE] + >We recommend that you set sleep or hibernation on the replacement PC so the Surface Hub will turn off the display when it isn't being used. 2. Turn off the Surface Hub using the power switch next to the power cable. @@ -421,10 +434,39 @@ You can switch the Surface Hub to use the internal PC. 3. Turn on the Surface Hub using the power switch next to the power cable.   - +## Video Out   +The Surface Hub includes a Video Out port for mirroring visual content from the Surface Hub to another display. +### Ports +Video Out port on the 55" Surface Hub +![Illustration of video output port](images/video-out-55.png) +Video Out port on the 84" Surface Hub + +![Illustration of video output port](images/video-out-84.png) + +
+ + + + + + + + + + + + + + + + +
DescriptionTypeInterfaceCapabilities

Video Output Mirror

Video Output

Video Output

    +
  • Supports connection to a standard DisplayPort monitor (only supports an x4 Link displaying 1080p60 resolution at 24bpp)

  • +
  • Supports use with HDMI monitors (supporting 1080p60) by using a DisplayPort-to-HDMI adaptor

  • +
diff --git a/devices/surface-hub/images/video-out-55.png b/devices/surface-hub/images/video-out-55.png new file mode 100644 index 0000000000000000000000000000000000000000..e386b7f3d98f2ff00590c25c054ebe365d0d9c0b GIT binary patch literal 11564 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 literal 0 HcmV?d00001 diff --git a/devices/surface-hub/images/video-out-84.png b/devices/surface-hub/images/video-out-84.png new file mode 100644 index 0000000000000000000000000000000000000000..672ae78556cf5906f8474b6d34ff151e9a0c47c4 GIT binary patch literal 14110 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 Date: Tue, 22 Nov 2016 08:39:44 -0800 Subject: [PATCH 08/18] add switch branches --- ...s-servicing-branches-windows-10-updates.md | 74 +++++++++++++++++++ 1 file changed, 74 insertions(+) diff --git a/windows/manage/waas-servicing-branches-windows-10-updates.md b/windows/manage/waas-servicing-branches-windows-10-updates.md index 65180b5cba..64dd552067 100644 --- a/windows/manage/waas-servicing-branches-windows-10-updates.md +++ b/windows/manage/waas-servicing-branches-windows-10-updates.md @@ -100,6 +100,80 @@ To prevent devices in your enterprise from being enrolled in the Insider Program - Group Policy: Computer Configuration\Administrative Templates\Windows Components\Data Collection and Preview Builds\\**Toggle user control over Insider builds** - MDM: Policy CSP - [System/AllowBuildPreview](https://msdn.microsoft.com/library/windows/hardware/dn904962%28v=vs.85%29.aspx#System_AllowBuildPreview) +## Switching branches + +During the life of a device, it may be necessary or desirable to switch between the available branches. Depending on the branch you are using, the exact mechanism for doing this can be different; some will be simple, others more involved. + + +++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
From this branchTo this branchYou need to
Windows Insider ProgramCurrent BranchWait for the final Current Branch release.
Current Branch for BusinessNot directly possible, because Windows Insider Program machines are automatically upgraded to the Current Branch release at the end of the development cycle.
Long-Term Servicing BranchNot directly possible (requires wipe-and-load).
Current BranchInsiderUse the Settings app to enroll the device in the Windows Insider Program.
Current Branch for BusinessSelect the Defer upgrade setting, or move the PC to a target group or flight that will not receive the next upgrade until it is business ready. Note that this change will not have any immediate impact; it only prevents the installation of the next Current Branch release.
Long-Term Servicing BranchNot directly possible (requires wipe-and-load).
Current Branch for BusinessInsiderUse the Settings app to enroll the device in the Windows Insider Program.
Current BranchDisable the Defer upgrade setting, or move the PC to a target group or flight that will receive the latest Current Branch release.
Long-Term Servicing BranchNot directly possible (requires wipe-and-load).
Long-Term Servicing BranchInsiderUse media to upgrade to the latest Windows Insider Program build.
Current BranchUse media to upgrade to a later Current Branch build. (Note that the Current Branch build must be a later build.)
Current Branch for BusinessUse media to upgrade to a later Current Branch for Business build (Current Branch build plus fixes). Note that it must be a later build.
+ + ## Steps to manage updates for Windows 10 From 2d14c60f328bae3274757fe515ee041b0c53a95f Mon Sep 17 00:00:00 2001 From: jdeckerMS Date: Tue, 22 Nov 2016 08:41:05 -0800 Subject: [PATCH 09/18] add to change history --- .../manage/change-history-for-manage-and-update-windows-10.md | 1 + 1 file changed, 1 insertion(+) diff --git a/windows/manage/change-history-for-manage-and-update-windows-10.md b/windows/manage/change-history-for-manage-and-update-windows-10.md index cf1b406e61..50f89c5dea 100644 --- a/windows/manage/change-history-for-manage-and-update-windows-10.md +++ b/windows/manage/change-history-for-manage-and-update-windows-10.md @@ -16,6 +16,7 @@ This topic lists new and updated topics in the [Manage and update Windows 10](in | New or changed topic | Description | | --- | --- | +| [Assign devices to servicing branches for Windows 10 updates](waas-servicing-branches-windows-10-updates.md) | Added guidance for switching devices between servicing branches | | [Manage updates for Windows 10 Mobile Enterprise and Windows 10 IoT Mobile](waas-mobile-updates.md) | Added Windows 10 IoT Mobile | ## October 2016 From f1a29861c43ff1ad6aadba5a584277899b3e5e7a Mon Sep 17 00:00:00 2001 From: jdeckerMS Date: Tue, 22 Nov 2016 10:48:24 -0800 Subject: [PATCH 10/18] add to change history --- devices/surface-hub/change-history-surface-hub.md | 1 + 1 file changed, 1 insertion(+) diff --git a/devices/surface-hub/change-history-surface-hub.md b/devices/surface-hub/change-history-surface-hub.md index a753773f2f..cf25f1c441 100644 --- a/devices/surface-hub/change-history-surface-hub.md +++ b/devices/surface-hub/change-history-surface-hub.md @@ -19,6 +19,7 @@ This topic lists new and updated topics in the [Surface Hub Admin Guide]( surfac | New or changed topic | Description | | --- | --- | | [Differences between Surface Hub and Windows 10 Enterprise](differences-between-surface-hub-and-windows-10-enterprise.md) | New | +| [Connect other devices and display with Surface Hub](connect-and-display-with-surface-hub.md) | Added information for Video Out and a table to help select a display method. | ## RELEASE: Windows Anniversary Update for Surface Hub (Windows 10, version 1607) The topics in this library have been updated for Windows 10, version 1607 (also known as Windows Anniversary Update for Surface Hub). These topics had significant updates for this release: From 1517dcb25ccebb03ad586eb4a6cc1f88a7c57f1a Mon Sep 17 00:00:00 2001 From: jdeckerMS Date: Tue, 22 Nov 2016 12:19:41 -0800 Subject: [PATCH 11/18] typo --- devices/surface-hub/manage-windows-updates-for-surface-hub.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devices/surface-hub/manage-windows-updates-for-surface-hub.md b/devices/surface-hub/manage-windows-updates-for-surface-hub.md index e41075f908..2d077cb622 100644 --- a/devices/surface-hub/manage-windows-updates-for-surface-hub.md +++ b/devices/surface-hub/manage-windows-updates-for-surface-hub.md @@ -19,7 +19,7 @@ New releases of the Surface Hub operating system are published through Windows U You can also configure Surface Hub to receive updates from both Windows Update for Business and WSUS. See [Integrate Windows Update for Business with Windows Server Update Services](https://technet.microsoft.com/en-us/itpro/windows/manage/waas-integrate-wufb#integrate-windows-update-for-business-with-windows-server-update-services) for details. -| Capabilities | Windows Update for Business | Windows server Update Services (WSUS) | +| Capabilities | Windows Update for Business | Windows Server Update Services (WSUS) | | ------------ | --------------------------- | ------------------------------------- | | Receive updates directly from Microsoft's Windows Update service, with no additional infrastructure required. | Yes | No | | Defer updates to provide additional time for testing and evaluation. | Yes | Yes | From d1cb5a21f28697c00e87987cf28bfd0b8188c864 Mon Sep 17 00:00:00 2001 From: JanKeller1 Date: Tue, 22 Nov 2016 15:53:39 -0800 Subject: [PATCH 12/18] Fixed link that, thru redirect, was circular --- windows/keep-secure/trusted-platform-module-overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/keep-secure/trusted-platform-module-overview.md b/windows/keep-secure/trusted-platform-module-overview.md index 8b0098f582..a1b3a32c2d 100644 --- a/windows/keep-secure/trusted-platform-module-overview.md +++ b/windows/keep-secure/trusted-platform-module-overview.md @@ -45,7 +45,7 @@ The TPM has several Group Policy settings that can be used to manage how it is u ## New and changed functionality -For more info on new and changed functionality for Trusted Platform Module in Windows 10, see [What's new in Trusted Platform Module?](../whats-new/trusted-platform-module.md). +For more info on new and changed functionality for Trusted Platform Module in Windows 10, see [What's new in Trusted Platform Module?](../whats-new/whats-new-windows-10-version-1507-and-1511.md#trusted-platform-module). ## Device health attestation From 822db20c19dca27340abb7ca56e57071c7c87be0 Mon Sep 17 00:00:00 2001 From: jdeckerMS Date: Mon, 28 Nov 2016 07:26:54 -0800 Subject: [PATCH 13/18] merge error sync --- devices/surface-hub/change-history-surface-hub.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/devices/surface-hub/change-history-surface-hub.md b/devices/surface-hub/change-history-surface-hub.md index 1c7164694c..b8837a0545 100644 --- a/devices/surface-hub/change-history-surface-hub.md +++ b/devices/surface-hub/change-history-surface-hub.md @@ -19,8 +19,10 @@ This topic lists new and updated topics in the [Surface Hub Admin Guide]( surfac | New or changed topic | Description | | --- | --- | | [Differences between Surface Hub and Windows 10 Enterprise](differences-between-surface-hub-and-windows-10-enterprise.md) | New | +| [Connect other devices and display with Surface Hub](connect-and-display-with-surface-hub.md) | Added information for Video Out and a table to help select a display method. | | [Hybrid deployment](hybrid-deployment-surface-hub-device-accounts.md) | Added instructions for creating accounts for Surface Hub in a Skype for Business hybrid environment. | + ## RELEASE: Windows Anniversary Update for Surface Hub (Windows 10, version 1607) The topics in this library have been updated for Windows 10, version 1607 (also known as Windows Anniversary Update for Surface Hub). These topics had significant updates for this release: - [Windows Updates (Surface Hub)](manage-windows-updates-for-surface-hub.md) From 22fc1f522f7eaf546d053eff2a1f78faf6bba362 Mon Sep 17 00:00:00 2001 From: jdeckerMS Date: Mon, 28 Nov 2016 10:23:34 -0800 Subject: [PATCH 14/18] loc fix --- windows/manage/guidelines-for-assigned-access-app.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/windows/manage/guidelines-for-assigned-access-app.md b/windows/manage/guidelines-for-assigned-access-app.md index 2d776f2cf5..0552f8af1a 100644 --- a/windows/manage/guidelines-for-assigned-access-app.md +++ b/windows/manage/guidelines-for-assigned-access-app.md @@ -54,8 +54,8 @@ If you use a web browser as your assigned access app, consider the following tip 2. Press **Enter** or click the gpedit icon to launch the group policy editor. 3. In the group policy editor, navigate to **User Configuration** > **Administrative Templates** > **Start Menu and Taskbar**. 4. Select **Remove Run menu from Start Menu**, select **Disabled**, and click **Apply**. Disabling this policy prevents users from entering the following into the Internet Explorer Address Bar: - - A UNC path (\\\) - - A local drive (C:\) + - A UNC path (\\\\*server*\\\\*share*) + - A local drive (C:\\) - A local folder (\temp) From e8e5a691e2614bfca54ea291f5b070cc8de19a0a Mon Sep 17 00:00:00 2001 From: Brian Lich Date: Mon, 28 Nov 2016 10:44:30 -0800 Subject: [PATCH 15/18] fixing typo --- ...windows-operating-system-components-to-microsoft-services.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/manage/manage-connections-from-windows-operating-system-components-to-microsoft-services.md b/windows/manage/manage-connections-from-windows-operating-system-components-to-microsoft-services.md index ca86b2cd46..08bc3dd3db 100644 --- a/windows/manage/manage-connections-from-windows-operating-system-components-to-microsoft-services.md +++ b/windows/manage/manage-connections-from-windows-operating-system-components-to-microsoft-services.md @@ -23,7 +23,7 @@ Learn about the network connections that Windows components make to Microsoft an If you want to minimize connections from Windows to Microsoft services, or configure particular privacy settings, this article covers the settings that you could consider. You can configure telemetry at the lowest level for your edition of Windows, and also evaluate which other connections Windows makes to Microsoft services you want to turn off in your environment from the list in this article. -You can configure telemetry at the Security level, turn off Windows Defender telemetry and MSRT reporting, and turn off all other connections to Microsoft network endpoints as described in this article to help prevent Windows from sending any data to Microsoft. There are many reason why these communications are enabled by default, such as updating malware definitions and maintain current certificate revocation lists, which is why we strongly recommend against this. This data helps us deliver a secure, reliable, and more delightful personalized experience. +You can configure telemetry at the Security level, turn off Windows Defender telemetry and MSRT reporting, and turn off all other connections to Microsoft network endpoints as described in this article to help prevent Windows from sending any data to Microsoft. There are many reasons why these communications are enabled by default, such as updating malware definitions and maintain current certificate revocation lists, which is why we strongly recommend against this. This data helps us deliver a secure, reliable, and more delightful personalized experience. We are always striving to improve our documentation and welcome your feedback. You can provide feedback by contacting telmhelp@microsoft.com. From 944e6bae853f69f229edd577d25282642b53f90e Mon Sep 17 00:00:00 2001 From: Brian Lich Date: Mon, 28 Nov 2016 13:55:55 -0800 Subject: [PATCH 16/18] removing TPM 2.0 requirement for DHA --- windows/whats-new/security.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/windows/whats-new/security.md b/windows/whats-new/security.md index a17f84be19..5cf158fc99 100644 --- a/windows/whats-new/security.md +++ b/windows/whats-new/security.md @@ -188,9 +188,8 @@ Table 1. Windows 10 hardware requirements | Windows Hello | R | N | N | N | N | N | | VBS | N | Y | Y | Y | N | Y | | UEFI Secure Boot | R | N | N | N | Y | N | -| Device health attestation through Measured Boot | Y\* | N | N | N | Y | Y | +| Device health attestation through Measured Boot | Y | N | N | N | Y | Y |   -\* Requires use of TPM 2.0. **Note**
In this table, **R** stands for *recommended*, **Y** means that the hardware component is *required* for that Windows 10 feature, and **N** means that the hardware component is *not used* with that Windows 10 feature. From a2925d5335ac681fff35a060690460eebb350d58 Mon Sep 17 00:00:00 2001 From: jdeckerMS Date: Tue, 29 Nov 2016 07:14:50 -0800 Subject: [PATCH 17/18] format --- ...-deployment-surface-hub-device-accounts.md | 27 ++++++++++--------- 1 file changed, 15 insertions(+), 12 deletions(-) diff --git a/devices/surface-hub/hybrid-deployment-surface-hub-device-accounts.md b/devices/surface-hub/hybrid-deployment-surface-hub-device-accounts.md index 0524268638..63a6cad8a2 100644 --- a/devices/surface-hub/hybrid-deployment-surface-hub-device-accounts.md +++ b/devices/surface-hub/hybrid-deployment-surface-hub-device-accounts.md @@ -114,14 +114,15 @@ Next, you enable the device account with [Skype for Business Online](#skype-for- ### Skype for Business Online - To enable Skype for Business online, your environment will need to meet the following prerequisites: - - You need to have Lync Online (Plan 2) or higher in your O365 plan. The plan needs to support conferencing capability. +To enable Skype for Business online, your environment will need to meet the following prerequisites: + +- You need to have Lync Online (Plan 2) or higher in your O365 plan. The plan needs to support conferencing capability. - - If you need Enterprise Voice (PSTN telephony) using telephony service providers for the Surface Hub, you need Lync Online (Plan 3). +- If you need Enterprise Voice (PSTN telephony) using telephony service providers for the Surface Hub, you need Lync Online (Plan 3). - - Your tenant users must have Exchange mailboxes (at least one Exchange mailbox in the tenant is required). +- Your tenant users must have Exchange mailboxes (at least one Exchange mailbox in the tenant is required). - - Your Surface Hub account does require a Lync Online (Plan 2) or Lync Online (Plan 3) license, but it does not require an Exchange Online license. +- Your Surface Hub account does require a Lync Online (Plan 2) or Lync Online (Plan 3) license, but it does not require an Exchange Online license. 1. Start by creating a remote PowerShell session from a PC to the Skype for Business online environment. @@ -137,7 +138,7 @@ Next, you enable the device account with [Skype for Business Online](#skype-for- Enable-CsMeetingRoom -Identity 'HUB01@contoso.com' -RegistrarPool 'sippoolbl20a04.infra.lync.com' -SipAddressType UserPrincipalName ``` - 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: + 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: ```ps1 Get-CsOnlineUser -Identity ‘HUB01@contoso.com’| fl *registrarpool* @@ -146,6 +147,7 @@ Next, you enable the device account with [Skype for Business Online](#skype-for- 2. Assign Skype for Business license to your Surface Hub account. Once you've completed the preceding steps to enable your Surface Hub account in Skype for Business Online, you need to assign a license to the Surface Hub. Using the O365 administrative portal, assign either a Skype for Business Online (Plan 2) or a Skype for Business Online (Plan 3) to the device. + - Login as a tenant administrator, open the O365 Administrative Portal, and click on the Admin app. - Click on **Users and Groups** and then **Add users, reset passwords, and more**. @@ -158,7 +160,8 @@ Next, you enable the device account with [Skype for Business Online](#skype-for- - Click **Save**. - >**Note** You can also use the Windows Azure Active Directory Module for Windows Powershell to run the cmdlets needed to assign one of these licenses, but that's not covered here. + >[!NOTE] + >You can also use the Windows Azure Active Directory Module for Windows Powershell to run the cmdlets needed to assign one of these licenses, but that's not covered here. For validation, you should be able to use any Skype for Business client (PC, Android, etc.) to sign in to this account. @@ -267,7 +270,7 @@ Use this procedure if you use Exchange online. ![Image with account name, logon name, and password options for new user.](images/hybriddeployment-03a.png) -6. Directory synchronization. +6. Run directory synchronization. After you've created the account, run a directory synchronization. When it's complete, go to the users page and verify that the two accounts created in the previous steps have merged. @@ -300,13 +303,13 @@ Next, you enable the device account with [Skype for Business Online](#sfb-online In order to enable Skype for Business, your environment will need to meet the following prerequisites: - - You'll need to have Lync Online (Plan 2) or higher in your O365 plan. The plan needs to support conferencing capability. +- You'll need to have Lync Online (Plan 2) or higher in your O365 plan. The plan needs to support conferencing capability. - - If you need Enterprise Voice (PSTN telephony) using telephony service providers for the Surface Hub, you need Lync Online (Plan 3). +- If you need Enterprise Voice (PSTN telephony) using telephony service providers for the Surface Hub, you need Lync Online (Plan 3). - - Your tenant users must have Exchange mailboxes (at least one Exchange mailbox in the tenant is required). +- Your tenant users must have Exchange mailboxes (at least one Exchange mailbox in the tenant is required). - - Your Surface Hub account does require a Lync Online (Plan 2) or Lync Online (Plan 3) license, but it does not require an Exchange Online license. +- Your Surface Hub account does require a Lync Online (Plan 2) or Lync Online (Plan 3) license, but it does not require an Exchange Online license. 1. Start by creating a remote PowerShell session to the Skype for Business online environment from a PC. From 4f7f8fc2bc3f3cfcc55f21a81da00ceb08012824 Mon Sep 17 00:00:00 2001 From: jdeckerMS Date: Tue, 29 Nov 2016 07:36:54 -0800 Subject: [PATCH 18/18] cmdlet --- ...-deployment-surface-hub-device-accounts.md | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/devices/surface-hub/hybrid-deployment-surface-hub-device-accounts.md b/devices/surface-hub/hybrid-deployment-surface-hub-device-accounts.md index 63a6cad8a2..ceb0a4bc73 100644 --- a/devices/surface-hub/hybrid-deployment-surface-hub-device-accounts.md +++ b/devices/surface-hub/hybrid-deployment-surface-hub-device-accounts.md @@ -313,24 +313,24 @@ In order to enable Skype for Business, your environment will need to meet the fo 1. Start by creating a remote PowerShell session to the Skype for Business online environment from a PC. - ```ps1 - Import-Module LyncOnlineConnector - $cssess=New-CsOnlineSession -Credential $cred - Import-PSSession $cssess -AllowClobber - ``` + ``` + Import-Module LyncOnlineConnector + $cssess=New-CsOnlineSession -Credential $cred + Import-PSSession $cssess -AllowClobber + ``` 2. To enable your Surface Hub account for Skype for Business Server, run this cmdlet: - ```ps1 - Enable-CsMeetingRoom -Identity 'HUB01@contoso.com' -RegistrarPool - 'sippoolbl20a04.infra.lync.com' -SipAddressType UserPrincipalName - ``` + ``` + Enable-CsMeetingRoom -Identity 'HUB01@contoso.com' -RegistrarPool + 'sippoolbl20a04.infra.lync.com' -SipAddressType UserPrincipalName + ``` - 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: + 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: - ```ps1 - Get-CsOnlineUser -Identity 'HUB01@contoso.com'| fl *registrarpool* - ``` + ``` + Get-CsOnlineUser -Identity 'HUB01@contoso.com'| fl *registrarpool* + ``` 10. Assign Skype for Business license to your Surface Hub account