mirror of
https://github.com/MicrosoftDocs/windows-itpro-docs.git
synced 2025-06-17 19:33:37 +00:00
Merge remote-tracking branch 'refs/remotes/origin/rs5' into jd5holo
This commit is contained in:
@ -79,13 +79,15 @@ Using Intune, you can also [monitor your app deployment](https://docs.microsoft.
|
||||
>[!TIP]
|
||||
>If you see a certificate error in the browser, follow [these troubleshooting steps](https://developer.microsoft.com/windows/mixed-reality/Using_the_Windows_Device_Portal.html#security_certificate).
|
||||
|
||||
4. In the Windows Device Portal, click **Apps**.
|
||||
4. In the Windows Device Portal, click **Views** and select **Apps**.
|
||||
|
||||

|
||||
|
||||
5. In **Install app**, select an **app package** from a folder on your computer or network. If the app package requires additional software, click **Add dependency**.
|
||||
5. Click **Add** to open the **Deploy or Install Application dialog**.
|
||||
|
||||
6. In **Deploy**, click **Go** to deploy the app package and added dependencies to the connected HoloLens.
|
||||
6. Select an **app package** from a folder on your computer or network. If the app package requires additional software or framework packages, click **I want to specify framework packages**.
|
||||
|
||||
7. Click **Next** to deploy the app package and added dependencies to the connected HoloLens.
|
||||
|
||||
|
||||
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 91 KiB After Width: | Height: | Size: 161 KiB |
Binary file not shown.
Before Width: | Height: | Size: 184 KiB After Width: | Height: | Size: 126 KiB |
@ -33,9 +33,9 @@ PowerShell scripts to help set up and manage your Microsoft Surface Hub.
|
||||
|
||||
To successfully execute these PowerShell scripts, you will need to install the following prerequisites:
|
||||
|
||||
- [Microsoft Online Services Sign-in Assistant for IT Professionals RTW](https://www.microsoft.com/download/details.aspx?id=41950)
|
||||
- [Microsoft Azure Active Directory Module for Windows PowerShell (64-bit version)](http://connect.microsoft.com/site1164/Downloads/DownloadDetails.aspx?DownloadID=59185)
|
||||
- [Windows PowerShell Module for Skype for Business Online](https://www.microsoft.com/download/details.aspx?id=39366)
|
||||
- [Microsoft Online Services Sign-in Assistant for IT Professionals RTW](https://www.microsoft.com/download/details.aspx?id=41950)
|
||||
- [Microsoft Azure Active Directory Module for Windows PowerShell (64-bit version)](https://www.powershellgallery.com/packages/MSOnline/1.1.183.17)
|
||||
- [Windows PowerShell Module for Skype for Business Online](https://www.microsoft.com/download/details.aspx?id=39366)
|
||||
|
||||
## <a href="" id="scripts-for-admins"></a>PowerShell scripts for Surface Hub administrators
|
||||
|
||||
@ -280,7 +280,7 @@ if ([System.String]::IsNullOrEmpty($strLyncFQDN))
|
||||
|
||||
|
||||
PrintAction "Connecting to remote sessions. This can occasionally take a while - please do not enter input..."
|
||||
try
|
||||
try
|
||||
{
|
||||
$sessExchange = New-PSSession -ConfigurationName microsoft.exchange -Credential $credExchange -AllowRedirection -Authentication Kerberos -ConnectionUri "http://$strExchangeServer/powershell" -WarningAction SilentlyContinue
|
||||
}
|
||||
@ -305,7 +305,7 @@ Import-PSSession $sessExchange -AllowClobber -WarningAction SilentlyContinue
|
||||
Import-PSSession $sessLync -AllowClobber -WarningAction SilentlyContinue
|
||||
|
||||
## Create the Exchange mailbox ##
|
||||
# Note: These exchange commandlets do not always throw their errors as exceptions
|
||||
# Note: These exchange commandlets do not always throw their errors as exceptions
|
||||
|
||||
# Because Get-Mailbox will throw an error if the mailbox is not found
|
||||
$Error.Clear()
|
||||
@ -333,7 +333,7 @@ $easpolicy = $null
|
||||
try {
|
||||
$easpolicy = Get-MobileDeviceMailboxPolicy $strPolicy
|
||||
}
|
||||
catch {}
|
||||
catch {}
|
||||
|
||||
if ($easpolicy)
|
||||
{
|
||||
@ -355,7 +355,7 @@ else
|
||||
$easpolicy = New-MobileDeviceMailboxPolicy -Name $strPolicy -PasswordEnabled $false -AllowNonProvisionableDevices $true
|
||||
if ($easpolicy)
|
||||
{
|
||||
PrintSuccess "A new device policy has been created; you can use this same policy for all future Surface Hub device accounts."
|
||||
PrintSuccess "A new device policy has been created; you can use this same policy for all future Surface Hub device accounts."
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -388,7 +388,7 @@ if ($easpolicy)
|
||||
if (!((Get-Mailbox $credNewAccount.UserName).ResourceType))
|
||||
{
|
||||
$Error.Clear()
|
||||
# Set policy for account
|
||||
# Set policy for account
|
||||
Set-CASMailbox $credNewAccount.UserName -ActiveSyncMailboxPolicy $strPolicy
|
||||
if (!$Error)
|
||||
{
|
||||
@ -399,9 +399,9 @@ if ($easpolicy)
|
||||
$status["ActiveSync Policy"] = "Failed to apply the EAS policy to the account."
|
||||
}
|
||||
$Error.Clear()
|
||||
|
||||
|
||||
# Convert back to room mailbox
|
||||
Set-Mailbox $credNewAccount.UserName -Type Room
|
||||
Set-Mailbox $credNewAccount.UserName -Type Room
|
||||
# Loop until resource type goes back to room
|
||||
for ($i = 0; ($i -lt 5) -And ((Get-Mailbox $credNewAccount.UserName).ResourceType -ne "Room"); $i++)
|
||||
{
|
||||
@ -409,12 +409,12 @@ if ($easpolicy)
|
||||
}
|
||||
if ((Get-Mailbox $credNewAccount.UserName).ResourceType -ne "Room")
|
||||
{
|
||||
# A failure to convert the mailbox back to a room is unfortunate but means the mailbox is unusable.
|
||||
# A failure to convert the mailbox back to a room is unfortunate but means the mailbox is unusable.
|
||||
$status["Mailbox Setup"] = "A mailbox was created but we could not set it to a room resource type."
|
||||
}
|
||||
else
|
||||
{
|
||||
try
|
||||
try
|
||||
{
|
||||
Set-Mailbox $credNewAccount.UserName -RoomMailboxPassword $credNewAccount.Password -EnableRoomMailboxAccount $true
|
||||
} catch { }
|
||||
@ -424,7 +424,7 @@ if ($easpolicy)
|
||||
}
|
||||
$Error.Clear()
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -464,13 +464,13 @@ $Error.Clear()
|
||||
## Configure the Account to not expire ##
|
||||
PrintAction "Configuring password not to expire..."
|
||||
Start-Sleep -s 20
|
||||
try
|
||||
try
|
||||
{
|
||||
Set-AdUser $mailbox.UserPrincipalName -PasswordNeverExpires $true -Enabled $true
|
||||
}
|
||||
catch
|
||||
{
|
||||
|
||||
|
||||
}
|
||||
|
||||
if ($Error)
|
||||
@ -503,7 +503,7 @@ $Error.Clear()
|
||||
try {
|
||||
Enable-CsMeetingRoom -Identity $credNewAccount.UserName -RegistrarPool $strRegPool -SipAddressType EmailAddress
|
||||
}
|
||||
catch { }
|
||||
catch { }
|
||||
|
||||
if ($Error)
|
||||
{
|
||||
@ -524,14 +524,14 @@ $strUsr = $credNewAccount.UserName
|
||||
PrintAction "Summary for creation of $strUsr ($strDisplay)"
|
||||
if ($status.Count -gt 0)
|
||||
{
|
||||
ForEach($k in $status.Keys)
|
||||
ForEach($k in $status.Keys)
|
||||
{
|
||||
$v = $status[$k]
|
||||
$color = "yellow"
|
||||
if ($v[0] -eq "S") { $color = "green" }
|
||||
elseif ($v[0] -eq "F")
|
||||
elseif ($v[0] -eq "F")
|
||||
{
|
||||
$color = "red"
|
||||
$color = "red"
|
||||
$v += " Go to http://aka.ms/shubtshoot"
|
||||
}
|
||||
|
||||
@ -611,11 +611,11 @@ function ExitIfError($strMsg)
|
||||
try {
|
||||
Import-Module LyncOnlineConnector
|
||||
Import-Module MSOnline
|
||||
}
|
||||
}
|
||||
catch
|
||||
{
|
||||
PrintError "Some dependencies are missing"
|
||||
PrintError "Please install the Windows PowerShell Module for Lync Online. For more information go to http://www.microsoft.com/download/details.aspx?id=39366"
|
||||
PrintError "Please install the Windows PowerShell Module for Lync Online. For more information go to http://www.microsoft.com/download/details.aspx?id=39366"
|
||||
PrintError "Please install the Azure Active Directory module for PowerShell from https://go.microsoft.com/fwlink/p/?linkid=236297"
|
||||
CleanupAndFail
|
||||
}
|
||||
@ -638,10 +638,10 @@ $credAdmin = $null
|
||||
$credAdmin=Get-Credential -Message "Enter credentials of an Exchange and Skype for Business admin"
|
||||
if (!$credadmin)
|
||||
{
|
||||
CleanupAndFail "Valid admin credentials are required to create and prepare the account."
|
||||
CleanupAndFail "Valid admin credentials are required to create and prepare the account."
|
||||
}
|
||||
PrintAction "Connecting to remote sessions. This can occasionally take a while - please do not enter input..."
|
||||
try
|
||||
try
|
||||
{
|
||||
$sessExchange = New-PSSession -ConfigurationName microsoft.exchange -Credential $credAdmin -AllowRedirection -Authentication basic -ConnectionUri "https://outlook.office365.com/powershell-liveid/" -WarningAction SilentlyContinue
|
||||
}
|
||||
@ -661,7 +661,7 @@ catch
|
||||
|
||||
try
|
||||
{
|
||||
Connect-MsolService -Credential $credAdmin
|
||||
Connect-MsolService -Credential $credAdmin
|
||||
}
|
||||
catch
|
||||
{
|
||||
@ -672,7 +672,7 @@ Import-PSSession $sessExchange -AllowClobber -WarningAction SilentlyContinue
|
||||
Import-PSSession $sessCS -AllowClobber -WarningAction SilentlyContinue
|
||||
|
||||
## Create the Exchange mailbox ##
|
||||
# Note: These exchange commandlets do not always throw their errors as exceptions
|
||||
# Note: These exchange commandlets do not always throw their errors as exceptions
|
||||
|
||||
# Because Get-Mailbox will throw an error if the mailbox is not found
|
||||
$Error.Clear()
|
||||
@ -700,7 +700,7 @@ $easpolicy = $null
|
||||
try {
|
||||
$easpolicy = Get-MobileDeviceMailboxPolicy $strPolicy
|
||||
}
|
||||
catch {}
|
||||
catch {}
|
||||
|
||||
if ($easpolicy)
|
||||
{
|
||||
@ -722,7 +722,7 @@ else
|
||||
$easpolicy = New-MobileDeviceMailboxPolicy -Name $strPolicy -PasswordEnabled $false -AllowNonProvisionableDevices $true
|
||||
if ($easpolicy)
|
||||
{
|
||||
PrintSuccess "A new device policy has been created; you can use this same policy for all future Surface Hub device accounts."
|
||||
PrintSuccess "A new device policy has been created; you can use this same policy for all future Surface Hub device accounts."
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -756,7 +756,7 @@ if ($easpolicy)
|
||||
if (!((Get-Mailbox $credNewAccount.UserName).ResourceType))
|
||||
{
|
||||
$Error.Clear()
|
||||
# Set policy for account
|
||||
# Set policy for account
|
||||
Set-CASMailbox $credNewAccount.UserName -ActiveSyncMailboxPolicy $strPolicy
|
||||
if (!$Error)
|
||||
{
|
||||
@ -768,9 +768,9 @@ if ($easpolicy)
|
||||
PrintError "Failed to apply policy"
|
||||
}
|
||||
$Error.Clear()
|
||||
|
||||
|
||||
# Convert back to room mailbox
|
||||
Set-Mailbox $credNewAccount.UserName -Type Room
|
||||
Set-Mailbox $credNewAccount.UserName -Type Room
|
||||
# Loop until resource type goes back to room
|
||||
for ($i = 0; ($i -lt 5) -And ((Get-Mailbox $credNewAccount.UserName).ResourceType -ne "Room"); $i++)
|
||||
{
|
||||
@ -778,7 +778,7 @@ if ($easpolicy)
|
||||
}
|
||||
if ((Get-Mailbox $credNewAccount.UserName).ResourceType -ne "Room")
|
||||
{
|
||||
# A failure to convert the mailbox back to a room is unfortunate but means the mailbox is unusable.
|
||||
# A failure to convert the mailbox back to a room is unfortunate but means the mailbox is unusable.
|
||||
$status["Mailbox Setup"] = "A mailbox was created but we could not set it to a room resource type."
|
||||
}
|
||||
else
|
||||
@ -790,7 +790,7 @@ if ($easpolicy)
|
||||
}
|
||||
$Error.Clear()
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -834,13 +834,13 @@ else
|
||||
$Error.Clear()
|
||||
## Configure the Account to not expire ##
|
||||
PrintAction "Configuring password not to expire..."
|
||||
try
|
||||
try
|
||||
{
|
||||
Set-MsolUser -UserPrincipalName $credNewAccount.UserName -PasswordNeverExpires $true
|
||||
}
|
||||
catch
|
||||
{
|
||||
|
||||
|
||||
}
|
||||
|
||||
if ($Error)
|
||||
@ -883,7 +883,7 @@ $Error.Clear()
|
||||
try {
|
||||
Enable-CsMeetingRoom -Identity $credNewAccount.UserName -RegistrarPool $strRegPool -SipAddressType EmailAddress
|
||||
}
|
||||
catch { }
|
||||
catch { }
|
||||
|
||||
if ($Error)
|
||||
{
|
||||
@ -933,14 +933,14 @@ else
|
||||
|
||||
if (![System.String]::IsNullOrEmpty($strLicenses))
|
||||
{
|
||||
try
|
||||
try
|
||||
{
|
||||
$Error.Clear()
|
||||
Set-MsolUserLicense -UserPrincipalName $credNewAccount.UserName -AddLicenses $strLicenses
|
||||
}
|
||||
catch
|
||||
{
|
||||
|
||||
|
||||
}
|
||||
if ($Error)
|
||||
{
|
||||
@ -959,7 +959,7 @@ else
|
||||
}
|
||||
|
||||
|
||||
Write-Host
|
||||
Write-Host
|
||||
|
||||
## Cleanup and print results ##
|
||||
Cleanup
|
||||
@ -968,14 +968,14 @@ $strUsr = $credNewAccount.UserName
|
||||
PrintAction "Summary for creation of $strUsr ($strDisplay)"
|
||||
if ($status.Count -gt 0)
|
||||
{
|
||||
ForEach($k in $status.Keys)
|
||||
ForEach($k in $status.Keys)
|
||||
{
|
||||
$v = $status[$k]
|
||||
$color = "yellow"
|
||||
if ($v[0] -eq "S") { $color = "green" }
|
||||
elseif ($v[0] -eq "F")
|
||||
elseif ($v[0] -eq "F")
|
||||
{
|
||||
$color = "red"
|
||||
$color = "red"
|
||||
$v += " Go to http://aka.ms/shubtshoot for help"
|
||||
}
|
||||
|
||||
@ -1100,7 +1100,7 @@ if ($fSfbIsOnline)
|
||||
try {
|
||||
Import-Module LyncOnlineConnector
|
||||
}
|
||||
catch
|
||||
catch
|
||||
{
|
||||
CleanupAndFail "To verify Skype for Business in online tenants you need the Lync Online Connector module from http://www.microsoft.com/download/details.aspx?id=39366"
|
||||
}
|
||||
@ -1116,7 +1116,7 @@ if ($fHasOnline)
|
||||
try {
|
||||
Import-Module MSOnline
|
||||
}
|
||||
catch
|
||||
catch
|
||||
{
|
||||
CleanupAndFail "To verify accounts in online tenants you need the Azure Active Directory module for PowerShell from https://go.microsoft.com/fwlink/p/?linkid=236297"
|
||||
}
|
||||
@ -1128,7 +1128,7 @@ if ($fExIsOnline)
|
||||
{
|
||||
$authType = [System.Management.Automation.Runspaces.AuthenticationMechanism]::Basic
|
||||
}
|
||||
try
|
||||
try
|
||||
{
|
||||
$sessEx = $null
|
||||
if ($fExIsOnline)
|
||||
@ -1139,12 +1139,12 @@ try
|
||||
{
|
||||
$sessEx = New-PSSession -ConfigurationName microsoft.exchange -Credential $credEx -AllowRedirection -Authentication $authType -ConnectionUri https://$strExServer/powershell -WarningAction SilentlyContinue
|
||||
}
|
||||
}
|
||||
}
|
||||
catch
|
||||
{
|
||||
}
|
||||
|
||||
if (!$sessEx)
|
||||
if (!$sessEx)
|
||||
{
|
||||
CleanupAndFail "Connecting to Exchange Powershell failed, please validate your server is accessible and credentials are correct"
|
||||
}
|
||||
@ -1184,12 +1184,12 @@ if ($fHasOnline)
|
||||
{
|
||||
CleanupAndFail "Internal error - could not determine MS Online credentials"
|
||||
}
|
||||
try
|
||||
try
|
||||
{
|
||||
PrintAction "Connecting to Azure Active Directory Services..."
|
||||
Connect-MsolService -Credential $credMsol
|
||||
PrintSuccess "Connected to Azure Active Directory Services"
|
||||
}
|
||||
}
|
||||
catch
|
||||
{
|
||||
# This really shouldn't happen unless there is a network error
|
||||
@ -1201,26 +1201,26 @@ if ($fHasOnline)
|
||||
PrintAction "Importing remote sessions into the local session..."
|
||||
try
|
||||
{
|
||||
$importEx = Import-PSSession $sessEx -AllowClobber -WarningAction SilentlyContinue -DisableNameChecking
|
||||
$importSfb = Import-PSSession $sessSfb -AllowClobber -WarningAction SilentlyContinue -DisableNameChecking
|
||||
$importEx = Import-PSSession $sessEx -AllowClobber -WarningAction SilentlyContinue -DisableNameChecking
|
||||
$importSfb = Import-PSSession $sessSfb -AllowClobber -WarningAction SilentlyContinue -DisableNameChecking
|
||||
}
|
||||
catch
|
||||
catch
|
||||
{
|
||||
}
|
||||
if (!$importEx -or !$importSfb)
|
||||
{
|
||||
CleanupAndFail "Import failed"
|
||||
CleanupAndFail "Import failed"
|
||||
}
|
||||
PrintSuccess "Import successful"
|
||||
|
||||
|
||||
$mailbox = $null
|
||||
try
|
||||
try
|
||||
{
|
||||
$mailbox = Get-Mailbox -Identity $strUpn
|
||||
}
|
||||
}
|
||||
catch
|
||||
{
|
||||
{
|
||||
}
|
||||
|
||||
if (!$mailbox)
|
||||
@ -1334,12 +1334,12 @@ if ($casMailbox)
|
||||
$policy = Get-ActiveSyncMailboxPolicy -Identity $strPolicy -WarningAction SilentlyContinue -ErrorAction SilentlyContinue
|
||||
Validate -Test "The policy $strPolicy does not require a device password" -Condition ($policy.PasswordEnabled -ne $True) -FailureMsg "PasswordEnabled - policy requires a device password - the Surface Hub will not be able to send mail or sync its calendar."
|
||||
}
|
||||
|
||||
|
||||
if ($policy -ne $null)
|
||||
{
|
||||
Validate -Test "The policy $strPolicy allows non-provisionable devices" -Condition ($policy.AllowNonProvisionableDevices -eq $null -or $policy.AllowNonProvisionableDevices -eq $true) -FailureMsg "AllowNonProvisionableDevices - policy will not allow the SurfaceHub to sync"
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -1409,7 +1409,7 @@ if ($fHasOnline)
|
||||
}
|
||||
}
|
||||
|
||||
#If there is an on-prem component, we can get the authorative AD user from mailbox
|
||||
#If there is an on-prem component, we can get the authorative AD user from mailbox
|
||||
if ($fHasOnPrem)
|
||||
{
|
||||
$accountOnPrem = $null
|
||||
@ -1512,16 +1512,16 @@ if ($online)
|
||||
{
|
||||
try {
|
||||
Import-Module LyncOnlineConnector
|
||||
}
|
||||
}
|
||||
catch
|
||||
{
|
||||
PrintError "Some dependencies are missing"
|
||||
PrintError "Please install the Windows PowerShell Module for Lync Online. For more information go to http://www.microsoft.com/download/details.aspx?id=39366"
|
||||
PrintError "Please install the Windows PowerShell Module for Lync Online. For more information go to http://www.microsoft.com/download/details.aspx?id=39366"
|
||||
PrintError "Please install the Azure Active Directory module for PowerShell from https://go.microsoft.com/fwlink/p/?linkid=236297"
|
||||
CleanupAndFail
|
||||
}
|
||||
}
|
||||
else
|
||||
else
|
||||
{
|
||||
$strRegPool = Read-Host "Enter the FQDN of your Skype for Business Registrar Pool"
|
||||
}
|
||||
@ -1633,7 +1633,7 @@ To apply the policy, the mailbox cannot be a room type, so it has to be converte
|
||||
```PowerShell
|
||||
# Convert user to regular type
|
||||
Set-Mailbox $strRoomUpn -Type Regular
|
||||
# Set policy for account
|
||||
# Set policy for account
|
||||
Set-CASMailbox $strRoomUpn -ActiveSyncMailboxPolicy $strPolicy
|
||||
```
|
||||
|
||||
|
@ -44,7 +44,7 @@ New or changed topic | Description
|
||||
|
||||
New or changed topic | Description
|
||||
--- | ---
|
||||
[Create and test a device account (Surface Hub)](create-and-test-a-device-account-surface-hub.md) | Added section for account verification and testing, with link to new Surface Hub Hardware Diagnostic app.
|
||||
[Create and test a device account (Surface Hub)](create-and-test-a-device-account-surface-hub.md) | Added section for account verification and testing, with link to new Surface Hub Hardware Diagnostic app.
|
||||
|
||||
## February 2018
|
||||
|
||||
@ -63,7 +63,7 @@ New or changed topic | Description
|
||||
|
||||
## November 2017
|
||||
|
||||
New or changed topic | Description
|
||||
New or changed topic | Description
|
||||
--- | ---
|
||||
[Enable 802.1x wired authentication](enable-8021x-wired-authentication.md) | New
|
||||
[Manage settings with an MDM provider (Surface Hub)](manage-settings-with-mdm-for-surface-hub.md) | Added settings for 802.1x wired authentication.
|
||||
@ -73,10 +73,10 @@ New or changed topic | Description
|
||||
New or changed topic | Description |
|
||||
--- | ---
|
||||
[Install apps on your Microsoft Surface Hub](install-apps-on-surface-hub.md) | Updated instructions to use Windows Team device family
|
||||
[Hybrid deployment](hybrid-deployment-surface-hub-device-accounts.md) | Updated the instructions for Exchange on-premises
|
||||
[Hybrid deployment](hybrid-deployment-surface-hub-device-accounts.md) | Updated the instructions for Exchange on-premises
|
||||
[Create a device account using UI](create-a-device-account-using-office-365.md) | Updated the instructions
|
||||
[Differences between Surface Hub and Windows 10 Enterprise](differences-between-surface-hub-and-windows-10-enterprise.md) | Clarified user sign-in on Surface Hub
|
||||
[Set up and use Whiteboard to Whiteboard collaboration](whiteboard-collaboration.md) | Removed **How to control and manage Whiteboard to Whiteboard collaboration** due to issues with the EnterpriseModernAppmanagement CSP losing state during End Session.
|
||||
[Set up and use Whiteboard to Whiteboard collaboration](whiteboard-collaboration.md) | Removed **How to control and manage Whiteboard to Whiteboard collaboration** due to issues with the EnterpriseModernAppmanagement CSP losing state during End Session.
|
||||
| [Manage settings with an MDM provider (Surface Hub)](manage-settings-with-mdm-for-surface-hub.md) | Removed settings for managing Whiteboard collaboration. |
|
||||
[Top support solutions for Surface Hub](support-solutions-surface-hub.md) | Added link to Surface Hub warranty information
|
||||
|
||||
@ -122,7 +122,7 @@ The topics in this library have been updated for Windows 10, version 1703 (also
|
||||
|
||||
- [Miracast on existing wireless network or LAN](miracast-over-infrastructure.md)
|
||||
|
||||
>[Looking for the Surface Hub admin guide for Windows 10, version 1607?](http://download.microsoft.com/download/7/2/5/7252051B-7E97-4781-B5DF-58D4B1A4BB88/surface-hub-admin-guide-1607.pdf)
|
||||
>[Looking for the Surface Hub admin guide for Windows 10, version 1607?](https://download.microsoft.com/download/7/2/5/7252051B-7E97-4781-B5DF-58D4B1A4BB88/surface-hub-admin-guide-1607.pdf)
|
||||
|
||||
|
||||
## May 2017
|
||||
@ -180,5 +180,5 @@ The topics in this library have been updated for Windows 10, version 1607 (also
|
||||
| [Password management (Surface Hub)](password-management-for-surface-hub-device-accounts.md) | Updates to content. |
|
||||
| [Create and test a device account (Surface Hub)](create-and-test-a-device-account-surface-hub.md) | Reorganize and streamline guidance on creating a device account. |
|
||||
| [Introduction to Surface Hub](intro-to-surface-hub.md) | Move Surface Hub dependencies table to [Prepare your environment for Surface Hub](prepare-your-environment-for-surface-hub.md). |
|
||||
| [Prepare your environment for Surface Hub](prepare-your-environment-for-surface-hub.md) | Add dependency table and reorganize topic. |
|
||||
| [Prepare your environment for Surface Hub](prepare-your-environment-for-surface-hub.md) | Add dependency table and reorganize topic. |
|
||||
| [Local management for Surface Hub settings](local-management-surface-hub-settings.md) | New topic. |
|
@ -36,7 +36,7 @@ If you prefer to use a graphical user interface, you can create a device account
|
||||
3. In the Office 365 Admin Center, navigate to **Resources** in the left panel, and then click **Rooms & equipment**.
|
||||
|
||||

|
||||
|
||||
|
||||
4. Click **Add** to create a new Room account. Enter a display name and email address for the account, and then click **Add**.
|
||||
|
||||

|
||||
@ -77,7 +77,7 @@ In order to run cmdlets used by these PowerShell scripts, the following must be
|
||||
|
||||
- [Microsoft Online Services Sign-In Assistant for IT Professionals BETA](https://go.microsoft.com/fwlink/?LinkId=718149)
|
||||
- [Windows Azure Active Directory Module for Windows PowerShell](https://www.microsoft.com/web/handlers/webpi.ashx/getinstaller/WindowsAzurePowershellGet.3f.3f.3fnew.appids)
|
||||
- [Skype for Business Online, Windows PowerShell Module](http://www.microsoft.com/download/details.aspx?id=39366)
|
||||
- [Skype for Business Online, Windows PowerShell Module](https://www.microsoft.com/download/details.aspx?id=39366)
|
||||
|
||||
### Connecting to online services
|
||||
|
||||
@ -137,19 +137,19 @@ Now that you're connected to the online services, you can finish setting up the
|
||||
|
||||
1. You’ll need to enter the account’s mail address and create a variable with that value:
|
||||
|
||||
```powershell
|
||||
```powershell
|
||||
$mailbox = (Get-Mailbox <your device account’s alias>)
|
||||
```
|
||||
|
||||
To store the value get it from the mailbox:
|
||||
|
||||
```powershell
|
||||
```powershell
|
||||
$strEmail = $mailbox.WindowsEmailAddress
|
||||
```
|
||||
|
||||
Print the value:
|
||||
|
||||
```powershell
|
||||
```powershell
|
||||
$strEmail
|
||||
```
|
||||
|
||||
@ -160,7 +160,7 @@ Now that you're connected to the online services, you can finish setting up the
|
||||
2. Run the following cmdlet:
|
||||
|
||||
```powershell
|
||||
Set-CASMailbox $strEmail -ActiveSyncMailboxPolicy "SurfaceHubDeviceMobilePolicy"
|
||||
Set-CASMailbox $strEmail -ActiveSyncMailboxPolicy "SurfaceHubDeviceMobilePolicy"
|
||||
```
|
||||
|
||||
4. Various Exchange properties can be set on the device account to improve the meeting experience. You can see which properties need to be set in the [Exchange properties](exchange-properties-for-surface-hub-device-accounts.md) section.
|
||||
@ -192,15 +192,15 @@ In order to enable Skype for Business, your environment will need to meet the fo
|
||||
1. Start by creating a remote PowerShell session from a PC.
|
||||
|
||||
```PowerShell
|
||||
Import-Module LyncOnlineConnector
|
||||
$cssess=New-CsOnlineSession -Credential $cred
|
||||
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:
|
||||
|
||||
```PowerShell
|
||||
Enable-CsMeetingRoom -Identity $strEmail -RegistrarPool
|
||||
Enable-CsMeetingRoom -Identity $strEmail -RegistrarPool
|
||||
"sippoolbl20a04.infra.lync.com" -SipAddressType EmailAddress
|
||||
```
|
||||
|
||||
@ -351,15 +351,15 @@ In order to enable Skype for Business, your environment will need to meet the fo
|
||||
1. Start by creating a remote PowerShell session from a PC.
|
||||
|
||||
```PowerShell
|
||||
Import-Module LyncOnlineConnector
|
||||
$cssess=New-CsOnlineSession -Credential $cred
|
||||
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:
|
||||
|
||||
```PowerShell
|
||||
Enable-CsMeetingRoom -Identity $strEmail -RegistrarPool
|
||||
Enable-CsMeetingRoom -Identity $strEmail -RegistrarPool
|
||||
"sippoolbl20a04.infra.lync.com" -SipAddressType EmailAddress
|
||||
```
|
||||
|
||||
|
@ -36,27 +36,27 @@ Initiating a reset will return the device to the last cumulative Windows update,
|
||||
|
||||
After the reset, Surface Hub restarts the [first run program](first-run-program-surface-hub.md) again. If the Surface Hub displays a Welcome screen, that indicates that the reset encountered a problem and rolled back to the previously existing OS image.
|
||||
|
||||
If you see a blank screen for long periods of time during the **Reset device** process, please wait and do not take any action.
|
||||
If you see a blank screen for long periods of time during the **Reset device** process, please wait and do not take any action.
|
||||
|
||||
|
||||
## Reset a Surface Hub from Settings
|
||||
|
||||
**To reset a Surface Hub**
|
||||
1. On your Surface Hub, open **Settings**.
|
||||
1. On your Surface Hub, open **Settings**.
|
||||
|
||||

|
||||
|
||||
|
||||
2. Click **Update & Security**.
|
||||
|
||||

|
||||
|
||||
|
||||
3. Click **Recovery**, and then, under **Reset device**, click **Get started**.
|
||||
|
||||

|
||||

|
||||
|
||||
<span id="cloud-recovery" />
|
||||
## Recover a Surface Hub from the cloud
|
||||
|
||||
|
||||
In the Windows Recovery Environment (Windows RE), you can recover your device by downloading a factory build from the cloud and installing it on the Surface Hub. This allows devices in an unusable state to recover without requiring assistance from Microsoft Support.
|
||||
|
||||
>[!NOTE]
|
||||
@ -64,7 +64,7 @@ In the Windows Recovery Environment (Windows RE), you can recover your device by
|
||||
|
||||
### Recover a Surface Hub in a bad state
|
||||
|
||||
If the device account gets into an unstable state or the Admin account is running into issues, you can use cloud recovery in **Settings**. You should only use cloud recovery when [reset](#reset-a-surface-hub-from-settings) doesn't fix the problem.
|
||||
If the device account gets into an unstable state or the Admin account is running into issues, you can use cloud recovery in **Settings**. You should only use cloud recovery when [reset](#reset-a-surface-hub-from-settings) doesn't fix the problem.
|
||||
|
||||
1. On your Surface Hub, go to **Settings** > **Update & security** > **Recovery**.
|
||||
|
||||
@ -74,23 +74,23 @@ If the device account gets into an unstable state or the Admin account is runnin
|
||||
|
||||
### Recover a locked Surface Hub
|
||||
|
||||
On rare occasions, a Surface Hub may encounter an error while cleaning up user and app data at the end of a session. When this happens, the device will automatically reboot and try again. But if this operation fails repeatedly, the device will be automatically locked to protect user data. To unlock it, you must reset or recover the device from [Windows RE](https://technet.microsoft.com/library/cc765966.aspx).
|
||||
On rare occasions, a Surface Hub may encounter an error while cleaning up user and app data at the end of a session. When this happens, the device will automatically reboot and try again. But if this operation fails repeatedly, the device will be automatically locked to protect user data. To unlock it, you must reset or recover the device from [Windows RE](https://technet.microsoft.com/library/cc765966.aspx).
|
||||
|
||||
1. From the welcome screen, toggle the Surface Hub's power switch 3 times. Wait a few seconds between each toggle. See the [Surface Hub Site Readiness Guide (PDF)](http://download.microsoft.com/download/3/8/8/3883E991-DFDB-4E70-8D28-20B26045FC5B/Surface-Hub-Site-Readiness-Guide_EN.pdf) for help with locating the power switch.
|
||||
2. The device should automatically boot into Windows RE.
|
||||
1. From the welcome screen, toggle the Surface Hub's power switch 3 times. Wait a few seconds between each toggle. See the [Surface Hub Site Readiness Guide (PDF)](https://download.microsoft.com/download/3/8/8/3883E991-DFDB-4E70-8D28-20B26045FC5B/Surface-Hub-Site-Readiness-Guide_EN.pdf) for help with locating the power switch.
|
||||
2. The device should automatically boot into Windows RE.
|
||||
3. After the Surface Hub enters Windows RE, select **Recover from the cloud**. (Optionally, you can choose **Reset**, however **Recover from the cloud** is the recommended approach.)
|
||||
|
||||
|
||||

|
||||
|
||||
|
||||
4. Enter the Bitlocker key (if prompted).
|
||||
5. When prompted, select **Reinstall**.
|
||||
|
||||

|
||||
|
||||
6. Select **Yes** to repartition the disk.
|
||||
|
||||
|
||||

|
||||
|
||||
|
||||
Reset will begin after the image is downloaded from the cloud. You will see progress indicators.
|
||||
|
||||

|
||||
|
@ -8,7 +8,7 @@ ms.sitesec: library
|
||||
author: jdeckerms
|
||||
ms.author: jdecker
|
||||
ms.topic: article
|
||||
ms.date: 04/12/2018
|
||||
ms.date: 08/30/2018
|
||||
ms.localizationpriority: medium
|
||||
---
|
||||
|
||||
@ -145,17 +145,17 @@ To enable Skype for Business online, your tenant users must have Exchange mailbo
|
||||
| --- | --- | --- | --- |
|
||||
| Join a scheduled meeting | Skype for Business Standalone Plan 1 | E1, 3, 4, or 5 | Skype for Business Server Standard CAL |
|
||||
| Initiate an ad-hoc meeting | Skype for Business Standalone Plan 2 | E 1, 3, 4, or 5 | Skype for Business Server Standard CAL or Enterprise CAL |
|
||||
| Initiate an ad-hoc meeting and dial out from a meeting to phone numbers | Skype for Business Standalone Plan 2 with PSTN Conferencing</br></br>**Note** PSTN consumption billing is optional | E1 or E3 with PSTN Conferencing, or E5| Skype for Business Server Standard CAL or Enterprise CAL |
|
||||
| Give the room a phone number and make or receive calls from the room or join a dial-in conference using a phone number | Skype for Business Standalone Plan 2 with Cloud PBX and a PSTN Voice Calling plan | E1 or E3 with Cloud PBX and a PSTN Voice Calling plan, or E5 | Skype for Business Server Standard CAL or Plus CAL |
|
||||
| Initiate an ad-hoc meeting and dial out from a meeting to phone numbers | Skype for Business Standalone Plan 2 with Audio Conferencing</br></br>**Note** PSTN consumption billing is optional | E1 or E3 with Audio Conferencing, or E5| Skype for Business Server Standard CAL or Enterprise CAL |
|
||||
| Give the room a phone number and make or receive calls from the room or join a dial-in conference using a phone number | Skype for Business Standalone Plan 2 with Phone System and a PSTN Voice Calling plan | E1 or E3 with Phone System and a PSTN Voice Calling plan, or E5 | Skype for Business Server Standard CAL or Plus CAL |
|
||||
|
||||
The following table lists the Office 365 plans and Skype for Business options.
|
||||
|
||||
| O365 Plan | Skype for Business | Cloud PBX | PSTN Conferencing | PSTN Calling |
|
||||
| O365 Plan | Skype for Business | Phone System | Audio Conferencing | Calling Plans |
|
||||
| --- | --- | --- | --- | --- |
|
||||
| O365 Business Essentials | Included | | | |
|
||||
| O365 Business Premium | Included | | | |
|
||||
| E1 | Included | Add-on | Add-on | Add-on (requires Cloud PBX add-on) |
|
||||
| E3 | Included | Add-on | Add-on | Add-on (requires Cloud PBX add-on) |
|
||||
| E1 | Included | Add-on | Add-on | Add-on (requires Phone System add-on) |
|
||||
| E3 | Included | Add-on | Add-on | Add-on (requires Phone System add-on) |
|
||||
| E5 | Included | Included | Included | Add-on |
|
||||
|
||||
1. Start by creating a remote PowerShell session from a PC to the Skype for Business online environment.
|
||||
@ -190,7 +190,7 @@ The following table lists the Office 365 plans and Skype for Business options.
|
||||
|
||||
- Click **Licenses**.
|
||||
|
||||
- In **Assign licenses**, select Skype for Business (Plan 2) or Skype for Business (Plan 3), depending on your licensing and Enterprise Voice requirements. You'll have to use a Plan 3 license if you want to use Enterprise Voice on your Surface Hub.
|
||||
- In **Assign licenses**, select Skype for Business (Plan 1) or Skype for Business (Plan 2), depending on your licensing and Enterprise Voice requirements. You'll have to use a Plan 2 license if you want to use Enterprise Voice on your Surface Hub.
|
||||
|
||||
- Click **Save**.
|
||||
|
||||
@ -291,7 +291,8 @@ Use this procedure if you use Exchange online.
|
||||
|
||||
- Type the password for this account. You'll need to retype it for verification. Make sure the **Password never expires** checkbox is the only option selected.
|
||||
|
||||
>**Important** Selecting **Password never expires** is a requirement for Skype for Business on the Surface Hub. Your domain rules may prohibit passwords that don't expire. If so, you'll need to create an exception for each Surface Hub device account.
|
||||
>[!IMPORTANT]
|
||||
>Selecting **Password never expires** is a requirement for Skype for Business on the Surface Hub. Your domain rules may prohibit passwords that don't expire. If so, you'll need to create an exception for each Surface Hub device account.
|
||||
|
||||

|
||||
|
||||
|
@ -13,9 +13,9 @@ ms.localizationpriority: medium
|
||||
|
||||
# Microsoft Surface Hub admin guide
|
||||
|
||||
>[Looking for the Surface Hub admin guide for Windows 10, version 1607?](http://download.microsoft.com/download/7/2/5/7252051B-7E97-4781-B5DF-58D4B1A4BB88/surface-hub-admin-guide-1607.pdf)
|
||||
>[Looking for the Surface Hub admin guide for Windows 10, version 1607?](https://download.microsoft.com/download/7/2/5/7252051B-7E97-4781-B5DF-58D4B1A4BB88/surface-hub-admin-guide-1607.pdf)
|
||||
|
||||
>[Looking for the user's guide for Surface Hub?](http://download.microsoft.com/download/3/6/B/36B6331E-0C63-4E71-A05D-EE88D05081F8/surface-hub-user-guide-en-us.pdf)
|
||||
>[Looking for the user's guide for Surface Hub?](https://download.microsoft.com/download/3/6/B/36B6331E-0C63-4E71-A05D-EE88D05081F8/surface-hub-user-guide-en-us.pdf)
|
||||
|
||||
|
||||
<table><tr><td style="border: 0px;width: 75%;valign= top">Microsoft Surface Hub is an all-in-one productivity device that is intended for brainstorming, collaboration, and presentations. In order to get the maximum benefit from Surface Hub, your organization’s infrastructure and the Surface Hub itself must be properly set up and integrated. The documentation in this library describes what needs to be done both before and during setup in order to help you optimize your use of the device.</td><td align="left" style="border: 0px"> </td></tr></table>
|
||||
@ -41,9 +41,9 @@ In some ways, adding your new Surface Hub is just like adding any other Microsof
|
||||
| [Prepare your environment for Microsoft Surface Hub](prepare-your-environment-for-surface-hub.md) | This section contains an overview of the steps required to prepare your environment so that you can use all of the features of Surface Hub. See [Intro to Surface Hub](intro-to-surface-hub.md) for a description of how the device and its features interact with your IT environment. |
|
||||
| [Set up Microsoft Surface Hub](set-up-your-surface-hub.md) | Set up instructions for Surface Hub include a setup worksheet, and a walkthrough of the first-run program. |
|
||||
| [Manage Microsoft Surface Hub](manage-surface-hub.md) | How to manage your Surface Hub after finishing the first-run program. |
|
||||
| [PowerShell for Surface Hub](appendix-a-powershell-scripts-for-surface-hub.md) |
|
||||
| [PowerShell for Surface Hub](appendix-a-powershell-scripts-for-surface-hub.md) |
|
||||
| [How Surface Hub addresses Wi-Fi Direct security issues](surface-hub-wifi-direct.md) | This topic provides guidance on Wi-Fi Direct security risks, how the Surface Hub has addressed those risks, and how Surface Hub administrators can configure the device for the highest level of security. | PowerShell scripts to help set up and manage your Surface Hub. |
|
||||
| [Top support solutions for Surface Hub](support-solutions-surface-hub.md) | These are the top Microsoft Support solutions for common issues experienced using Surface Hub. |
|
||||
| [Top support solutions for Surface Hub](support-solutions-surface-hub.md) | These are the top Microsoft Support solutions for common issues experienced using Surface Hub. |
|
||||
| [Troubleshoot Microsoft Surface Hub](troubleshoot-surface-hub.md) | Troubleshoot common problems, including setup issues, Exchange ActiveSync errors. |
|
||||
| [Troubleshoot Miracast on Surface Hub](miracast-troubleshooting.md) | Learn how to resolve Miracast issues. |
|
||||
| [Useful downloads for Surface Hub administrators](surface-hub-downloads.md) | This topic provides links to useful Surface Hub documents, such as product datasheets, the site readiness guide, and user's guide. |
|
||||
|
@ -7,7 +7,7 @@ ms.prod: surface-hub
|
||||
ms.sitesec: library
|
||||
author: jdeckerms
|
||||
ms.author: jdecker
|
||||
ms.date: 06/01/2018
|
||||
ms.date: 08/28/2018
|
||||
ms.localizationpriority: medium
|
||||
---
|
||||
|
||||
@ -108,8 +108,7 @@ If you have a single-forest on-premises deployment with Microsoft Exchange 2013
|
||||
## Disable anonymous email and IM
|
||||
|
||||
|
||||
>[!WARNING]
|
||||
>This information relates to prereleased product which may be substantially modified before it's commercially released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
|
||||
|
||||
|
||||
Surface Hub uses a device account to provide email and collaboration services (IM, video, voice). This device account is used as the originating identity (the “from” party) when sending email, IM, and placing calls. As this account is not coming from an individual, identifiable user, it is deemed “anonymous” because it originated from the Surface Hub's device account.
|
||||
|
||||
|
@ -6,7 +6,7 @@ ms.prod: surface-hub
|
||||
ms.sitesec: library
|
||||
author: jdeckerms
|
||||
ms.author: jdecker
|
||||
ms.date: 06/01/2018
|
||||
ms.date: 08/28/2018
|
||||
ms.localizationpriority: medium
|
||||
---
|
||||
|
||||
@ -97,8 +97,7 @@ If you have a multi-forest on-premises deployment with Microsoft Exchange 2013 o
|
||||
|
||||
## Disable anonymous email and IM
|
||||
|
||||
>[!WARNING]
|
||||
>This information relates to prereleased product which may be substantially modified before it's commercially released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
|
||||
|
||||
|
||||
Surface Hub uses a device account to provide email and collaboration services (IM, video, voice). This device account is used as the originating identity (the “from” party) when sending email, IM, and placing calls. As this account is not coming from an individual, identifiable user, it is deemed “anonymous” because it originated from the Surface Hub's device account.
|
||||
|
||||
|
@ -16,22 +16,21 @@ This topic provides links to useful Surface Hub documents, such as product datas
|
||||
|
||||
| Link | Description |
|
||||
| --- | --- |
|
||||
| [Surface Hub Site Readiness Guide (PDF)](http://download.microsoft.com/download/3/8/8/3883E991-DFDB-4E70-8D28-20B26045FC5B/Surface-Hub-Site-Readiness-Guide_EN.pdf) | Make sure your site is ready for Surface Hub, including structural and power requirements, and get technical specs for Surface Hub. [Watch the video (opens in a pop-up media player)](http://compass.xbox.com/assets/27/aa/27aa7dd7-7cb7-40ea-9bd6-c7de0795f68c.mov?n=04.07.16_installation_video_01_site_readiness.mov) |
|
||||
| [Surface Hub Setup Guide (English, French, Spanish) (PDF)](http://download.microsoft.com/download/0/1/6/016363A4-8602-4F01-8281-9BE5C814DC78/Setup-Guide_EN-FR-SP.pdf) | Get a quick overview of how to set up the environment for your new Surface Hub. |
|
||||
| [Surface Hub Quick Reference Guide (PDF)](http://download.microsoft.com/download/9/E/E/9EE660F8-3FC6-4909-969E-89EA648F06DB/Surface%20Hub%20Quick%20Reference%20Guide_en-us.pdf) | Use this quick reference guide to get information about key features and functions of the Surface Hub. |
|
||||
| [Surface Hub User Guide (PDF)](http://download.microsoft.com/download/3/6/B/36B6331E-0C63-4E71-A05D-EE88D05081F8/surface-hub-user-guide-en-us.pdf) | Learn how to use Surface Hub in scheduled or ad-hoc meetings. Invite remote participants, use the built-in tools, save data from your meeting, and more. |
|
||||
| [Surface Hub Site Readiness Guide (PDF)](https://download.microsoft.com/download/3/8/8/3883E991-DFDB-4E70-8D28-20B26045FC5B/Surface-Hub-Site-Readiness-Guide_EN.pdf) | Make sure your site is ready for Surface Hub, including structural and power requirements, and get technical specs for Surface Hub. [Watch the video (opens in a pop-up media player)](http://compass.xbox.com/assets/27/aa/27aa7dd7-7cb7-40ea-9bd6-c7de0795f68c.mov?n=04.07.16_installation_video_01_site_readiness.mov) |
|
||||
| [Surface Hub Setup Guide (English, French, Spanish) (PDF)](https://download.microsoft.com/download/0/1/6/016363A4-8602-4F01-8281-9BE5C814DC78/Setup-Guide_EN-FR-SP.pdf) | Get a quick overview of how to set up the environment for your new Surface Hub. |
|
||||
| [Surface Hub Quick Reference Guide (PDF)](https://download.microsoft.com/download/9/E/E/9EE660F8-3FC6-4909-969E-89EA648F06DB/Surface%20Hub%20Quick%20Reference%20Guide_en-us.pdf) | Use this quick reference guide to get information about key features and functions of the Surface Hub. |
|
||||
| [Surface Hub User Guide (PDF)](https://download.microsoft.com/download/3/6/B/36B6331E-0C63-4E71-A05D-EE88D05081F8/surface-hub-user-guide-en-us.pdf) | Learn how to use Surface Hub in scheduled or ad-hoc meetings. Invite remote participants, use the built-in tools, save data from your meeting, and more. |
|
||||
| [Surface Hub Replacement PC Drivers](https://www.microsoft.com/download/details.aspx?id=52210) | The Surface Hub Replacement PC driver set is available for those customers who have chosen to disable the Surface Hub’s internal PC and use an external computer with their 84” or 55” Surface Hub. This download is meant to be used with the Surface Hub Admin Guide , which contains further details on configuring a Surface Hub Replacement PC. |
|
||||
| [Surface Hub SSD Replacement Guide (PDF)](http://download.microsoft.com/download/1/F/2/1F202254-7156-459F-ABD2-39CF903A25DE/surface-hub-ssd-replacement-guide_en-us.pdf) | Learn how to replace the solid state drive (SSD) for the 55- and 84-inch Surface Hub. |
|
||||
| [Microsoft Surface Hub Rollout and Adoption Success Kit (ZIP)](http://download.microsoft.com/download/F/A/3/FA3ADEA4-4966-456B-8BDE-0A594FD52C6C/Surface_Hub_Adoption_Kit_Final_0519.pdf) | Best practices for generating awareness and implementing change management to maximize adoption, usage, and benefits of Microsoft Surface Hub. The Rollout and Adoption Success Kit zip file includes the Rollout and Adoption Success Kit detailed document, Surface Hub presentation, demo guidance, awareness graphics, and more. |
|
||||
| [Unpacking Guide for 84-inch Surface Hub (PDF)](http://download.microsoft.com/download/5/2/B/52B4007E-D8C8-4EED-ACA9-FEEF93F6055C/84_Unpacking_Guide_English_French-Spanish.pdf) | Learn how to unpack your 84-inch Surface Hub efficiently and safely. [Watch the video (opens in a pop-up media player)](http://compass.xbox.com/assets/75/2b/752b73dc-6e9d-4692-8ba1-0f9fc03bff6b.mov?n=04.07.16_installation_video_03_unpacking_84.mov) |
|
||||
| [Unpacking Guide for 55-inch Surface Hub (PDF)](http://download.microsoft.com/download/2/E/7/2E7616A2-F936-4512-8052-1E2D92DFD070/55_Unpacking_Guide_English-French-Spanish.PDF) | Learn how to unpack your 55-inch Surface Hub efficiently and safely. [Watch the video (opens in a pop-up media player)](http://compass.xbox.com/assets/a9/d6/a9d6b4d7-d33f-4e8b-be92-28f7fc2c06d7.mov?n=04.07.16_installation_video_02_unpacking_55.mov) |
|
||||
| [Wall Mounting and Assembly Guide (PDF)](http://download.microsoft.com/download/7/0/2/702485E3-B55E-4DE8-B5DD-3B56F90DCF5D/SH-Guide_WACG_Wall_Mounts_EN-FR-ES-NL-DE-IT-PT-AR-DA-FI-NO-SV.pdf) | Detailed instructions on how to safely and securely assemble the wall brackets, and how to mount your Surface Hub onto them. [Watch the video (opens in a pop-up media player)](http://compass.xbox.com/assets/bf/4d/bf4d6f06-370c-45ee-88e6-c409873914e8.mov?n=04.07.16_installation_video_05_wall_mount.mov) |
|
||||
| [Floor-Supported Mounting and Assembly Guide (PDF)](http://download.microsoft.com/download/7/0/2/702485E3-B55E-4DE8-B5DD-3B56F90DCF5D/SH-Guide_WACG_Floor_Support_Mount_EN-FR-ES-NL-DE-IT-AR-DA-FI-NO-SV.pdf) | Detailed instructions on how to safely and securely assemble the floor-supported brackets, and how to mount your Surface Hub onto them. [Watch the video (opens in a pop-up media player)](http://compass.xbox.com/assets/ed/de/edde468a-e1d4-4ce8-8b61-c4527dd25c81.mov?n=04.07.16_installation_video_06_floor_support_mount.mov) |
|
||||
| [Rolling Stand Mounting and Assembly Guide (PDF)](http://download.microsoft.com/download/7/0/2/702485E3-B55E-4DE8-B5DD-3B56F90DCF5D/SH-Guide_WACG_Rolling_Stands_EN-FR-ES-NL-DE-IT-AR-DA-FI-NO-SV.pdf) | Detailed instructions on how to safely and securely assemble the rolling stand, and how to mount your Surface Hub onto it. [Watch the video (opens in a pop-up media player)](http://compass.xbox.com/assets/1f/94/1f949613-3e4a-41e3-ad60-fe8aa7134115.mov?n=04.07.16_installation_video_04_rolling_stand_mount.mov) |
|
||||
| [Mounts and Stands Datasheet (PDF)](http://download.microsoft.com/download/5/0/1/501F98D9-1BCC-4448-A1DB-47056CEE33B6/20160711_Surface_Hub_Mounts_and_Stands_Datasheet.pdf) | Specifications and prices for all Surface Hub add-on stands and mounts that turn your workspace into a Surface Hub workspace. |
|
||||
| [Surface Hub Stand and Wall Mount Specifications (PDF)](http://download.microsoft.com/download/7/A/7/7A75BD0F-5A46-4BCE-B313-A80E47AEB581/20160720_Combined_Stand_Wall_Mount_Drawings.pdf) | Illustrated specifications for the 55” and 84” Surface Hub rolling stands, wall mounts, and floor-supported wall mounts. |
|
||||
| [Surface Hub SSD Replacement Guide (PDF)](https://download.microsoft.com/download/1/F/2/1F202254-7156-459F-ABD2-39CF903A25DE/surface-hub-ssd-replacement-guide_en-us.pdf) | Learn how to replace the solid state drive (SSD) for the 55- and 84-inch Surface Hub. |
|
||||
| [Microsoft Surface Hub Rollout and Adoption Success Kit (ZIP)](https://download.microsoft.com/download/F/A/3/FA3ADEA4-4966-456B-8BDE-0A594FD52C6C/Surface_Hub_Adoption_Kit_Final_0519.pdf) | Best practices for generating awareness and implementing change management to maximize adoption, usage, and benefits of Microsoft Surface Hub. The Rollout and Adoption Success Kit zip file includes the Rollout and Adoption Success Kit detailed document, Surface Hub presentation, demo guidance, awareness graphics, and more. |
|
||||
| [Unpacking Guide for 84-inch Surface Hub (PDF)](https://download.microsoft.com/download/5/2/B/52B4007E-D8C8-4EED-ACA9-FEEF93F6055C/84_Unpacking_Guide_English_French-Spanish.pdf) | Learn how to unpack your 84-inch Surface Hub efficiently and safely. [Watch the video (opens in a pop-up media player)](http://compass.xbox.com/assets/75/2b/752b73dc-6e9d-4692-8ba1-0f9fc03bff6b.mov?n=04.07.16_installation_video_03_unpacking_84.mov) |
|
||||
| [Unpacking Guide for 55-inch Surface Hub (PDF)](https://download.microsoft.com/download/2/E/7/2E7616A2-F936-4512-8052-1E2D92DFD070/55_Unpacking_Guide_English-French-Spanish.PDF) | Learn how to unpack your 55-inch Surface Hub efficiently and safely. [Watch the video (opens in a pop-up media player)](http://compass.xbox.com/assets/a9/d6/a9d6b4d7-d33f-4e8b-be92-28f7fc2c06d7.mov?n=04.07.16_installation_video_02_unpacking_55.mov) |
|
||||
| [Wall Mounting and Assembly Guide (PDF)](https://download.microsoft.com/download/7/0/2/702485E3-B55E-4DE8-B5DD-3B56F90DCF5D/SH-Guide_WACG_Wall_Mounts_EN-FR-ES-NL-DE-IT-PT-AR-DA-FI-NO-SV.pdf) | Detailed instructions on how to safely and securely assemble the wall brackets, and how to mount your Surface Hub onto them. [Watch the video (opens in a pop-up media player)](http://compass.xbox.com/assets/bf/4d/bf4d6f06-370c-45ee-88e6-c409873914e8.mov?n=04.07.16_installation_video_05_wall_mount.mov) |
|
||||
| [Floor-Supported Mounting and Assembly Guide (PDF)](https://download.microsoft.com/download/7/0/2/702485E3-B55E-4DE8-B5DD-3B56F90DCF5D/SH-Guide_WACG_Floor_Support_Mount_EN-FR-ES-NL-DE-IT-AR-DA-FI-NO-SV.pdf) | Detailed instructions on how to safely and securely assemble the floor-supported brackets, and how to mount your Surface Hub onto them. [Watch the video (opens in a pop-up media player)](http://compass.xbox.com/assets/ed/de/edde468a-e1d4-4ce8-8b61-c4527dd25c81.mov?n=04.07.16_installation_video_06_floor_support_mount.mov) |
|
||||
| [Rolling Stand Mounting and Assembly Guide (PDF)](https://download.microsoft.com/download/7/0/2/702485E3-B55E-4DE8-B5DD-3B56F90DCF5D/SH-Guide_WACG_Rolling_Stands_EN-FR-ES-NL-DE-IT-AR-DA-FI-NO-SV.pdf) | Detailed instructions on how to safely and securely assemble the rolling stand, and how to mount your Surface Hub onto it. [Watch the video (opens in a pop-up media player)](http://compass.xbox.com/assets/1f/94/1f949613-3e4a-41e3-ad60-fe8aa7134115.mov?n=04.07.16_installation_video_04_rolling_stand_mount.mov) |
|
||||
| [Mounts and Stands Datasheet (PDF)](https://download.microsoft.com/download/5/0/1/501F98D9-1BCC-4448-A1DB-47056CEE33B6/20160711_Surface_Hub_Mounts_and_Stands_Datasheet.pdf) | Specifications and prices for all Surface Hub add-on stands and mounts that turn your workspace into a Surface Hub workspace. |
|
||||
| [Surface Hub Stand and Wall Mount Specifications (PDF)](https://download.microsoft.com/download/7/A/7/7A75BD0F-5A46-4BCE-B313-A80E47AEB581/20160720_Combined_Stand_Wall_Mount_Drawings.pdf) | Illustrated specifications for the 55” and 84” Surface Hub rolling stands, wall mounts, and floor-supported wall mounts. |
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -14,9 +14,9 @@ ms.localizationpriority: medium
|
||||
|
||||
# Using the Surface Hub Recovery Tool
|
||||
|
||||
The [Microsoft Surface Hub Recovery Tool](https://www.microsoft.com/download/details.aspx?id=52210) helps you re-image your Surface Hub Solid State Drive (SSD) using a Windows 10 desktop device, without calling support or replacing the SSD. With this tool, you can reimage an SSD that has an unknown Administrator password, boot errors, was unable to complete a cloud recovery, or for a device that has an older version of the operating system. The tool will not fix physically damaged SSDs.
|
||||
The [Microsoft Surface Hub Recovery Tool](https://www.microsoft.com/download/details.aspx?id=52210) helps you re-image your Surface Hub Solid State Drive (SSD) using a Windows 10 desktop device, without calling support or replacing the SSD. With this tool, you can reimage an SSD that has an unknown Administrator password, boot errors, was unable to complete a cloud recovery, or for a device that has an older version of the operating system. The tool will not fix physically damaged SSDs.
|
||||
|
||||
To re-image the Surface Hub SSD using the Recovery Tool, you'll need to remove the SSD from the Surface Hub, connect the drive to the USB-to-SATA cable, and then connect the cable to the desktop PC on which the Recovery Tool is installed. For more information on how to remove the existing drive from your Surface Hub, please refer to the [Surface Hub SSD Replacement Guide (PDF)](http://download.microsoft.com/download/1/F/2/1F202254-7156-459F-ABD2-39CF903A25DE/surface-hub-ssd-replacement-guide_en-us.pdf).
|
||||
To re-image the Surface Hub SSD using the Recovery Tool, you'll need to remove the SSD from the Surface Hub, connect the drive to the USB-to-SATA cable, and then connect the cable to the desktop PC on which the Recovery Tool is installed. For more information on how to remove the existing drive from your Surface Hub, please refer to the [Surface Hub SSD Replacement Guide (PDF)](https://download.microsoft.com/download/1/F/2/1F202254-7156-459F-ABD2-39CF903A25DE/surface-hub-ssd-replacement-guide_en-us.pdf).
|
||||
|
||||
>[!IMPORTANT]
|
||||
>Do not let the device go to sleep or interrupt the download of the image file.
|
||||
@ -31,15 +31,15 @@ If the tool is unsuccessful in reimaging your drive, please contact [Surface Hub
|
||||
- Internet access
|
||||
- Open USB 2.0 or greater port
|
||||
- USB-to-SATA cable
|
||||
- 10 GB of free disk space on the host computer
|
||||
- SSDs shipped with Surface Hub or a SSD provided by Support as a replacement. SSDs not supplied by Microsoft are not supported.
|
||||
- 10 GB of free disk space on the host computer
|
||||
- SSDs shipped with Surface Hub or a SSD provided by Support as a replacement. SSDs not supplied by Microsoft are not supported.
|
||||
|
||||
### Recommended
|
||||
|
||||
- High-speed Internet connection
|
||||
- Open USB 3.0 port
|
||||
- USB 3.0 or higher USB-to-SATA cable
|
||||
- The imaging tool was tested with the following make and model of cables:
|
||||
- The imaging tool was tested with the following make and model of cables:
|
||||
- Startech USB312SAT3CB
|
||||
- Rosewill RCUC16001
|
||||
- Ugreen 20231
|
||||
@ -57,7 +57,7 @@ Install Surface Hub Recovery Tool on the host PC.
|
||||
|
||||
## Run Surface Hub Recovery Tool
|
||||
|
||||
1. On the host PC, select the **Start** button, scroll through the alphabetical list on the left, and select the recovery tool shortcut.
|
||||
1. On the host PC, select the **Start** button, scroll through the alphabetical list on the left, and select the recovery tool shortcut.
|
||||
|
||||

|
||||
|
||||
@ -69,11 +69,11 @@ Install Surface Hub Recovery Tool on the host PC.
|
||||
|
||||

|
||||
|
||||
4. click **Yes** to download the image. Time to download the recovery image is dependent on internet connection speeds. On an average corporate connection, it can take up to an hour to download the 8GB image file.
|
||||
4. click **Yes** to download the image. Time to download the recovery image is dependent on internet connection speeds. On an average corporate connection, it can take up to an hour to download the 8GB image file.
|
||||
|
||||

|
||||
|
||||
5. When the download is complete, the tool instructs you to connect an SSD drive. If the tool is unable to locate the attached drive, there is a good chance that the cable being used is not reporting the name of the SSD to Windows. The imaging tool must find the name of the drive as "LITEON L CH-128V2S USB Device" before it can continue. For more information on how to remove the existing drive from your Surface Hub, please refer to the [Surface Hub SSD Replacement Guide (PDF)](http://download.microsoft.com/download/1/F/2/1F202254-7156-459F-ABD2-39CF903A25DE/surface-hub-ssd-replacement-guide_en-us.pdf).
|
||||
5. When the download is complete, the tool instructs you to connect an SSD drive. If the tool is unable to locate the attached drive, there is a good chance that the cable being used is not reporting the name of the SSD to Windows. The imaging tool must find the name of the drive as "LITEON L CH-128V2S USB Device" before it can continue. For more information on how to remove the existing drive from your Surface Hub, please refer to the [Surface Hub SSD Replacement Guide (PDF)](https://download.microsoft.com/download/1/F/2/1F202254-7156-459F-ABD2-39CF903A25DE/surface-hub-ssd-replacement-guide_en-us.pdf).
|
||||
|
||||

|
||||
|
||||
|
@ -22,7 +22,7 @@ This article walks you through the process of customizing the Surface out-of-box
|
||||
It is common practice in a Windows deployment to customize the user experience for the first startup of deployed computers — the out-of-box experience, or OOBE.
|
||||
|
||||
>[!NOTE]
|
||||
>OOBE is also often used to describe the phase, or configuration pass, of Windows setup during which the user experience is displayed. For more information about the OOBE phase of setup, see [How Configuration Passes Work](http://msdn.microsoft.com/library/windows/hardware/dn898581.aspx).
|
||||
>OOBE is also often used to describe the phase, or configuration pass, of Windows setup during which the user experience is displayed. For more information about the OOBE phase of setup, see [How Configuration Passes Work](https://msdn.microsoft.com/library/windows/hardware/dn898581.aspx).
|
||||
|
||||
In some scenarios, you may want to provide complete automation to ensure that at the end of a deployment, computers are ready for use without any interaction from the user. In other scenarios, you may want to leave key elements of the experience for users to perform necessary actions or select between important choices. For administrators deploying to Surface devices, each of these scenarios presents a unique challenge to overcome.
|
||||
|
||||
@ -30,8 +30,8 @@ This article provides a summary of the scenarios where a deployment might requir
|
||||
|
||||
>[!NOTE]
|
||||
>Although the OOBE phase of setup is still run during a deployment with an automated deployment solution such as the [Microsoft Deployment Toolkit (MDT)](https://go.microsoft.com/fwlink/p/?LinkId=618117) or System Center Configuration Manager Operating System Deployment (OSD), it is automated by the settings supplied in the Deployment Wizard and task sequence. For more information see:<br/>
|
||||
>- [Deploy Windows 10 with the Microsoft Deployment Toolkit](http://technet.microsoft.com/itpro/windows/deploy/deploy-windows-10-with-the-microsoft-deployment-toolkit)
|
||||
>- [Deploy Windows 10 with System Center 2012 R2 Configuration Manager](http://technet.microsoft.com/itpro/windows/deploy/deploy-windows-10-with-system-center-2012-r2-configuration-manager)
|
||||
>- [Deploy Windows 10 with the Microsoft Deployment Toolkit](https://technet.microsoft.com/itpro/windows/deploy/deploy-windows-10-with-the-microsoft-deployment-toolkit)
|
||||
>- [Deploy Windows 10 with System Center 2012 R2 Configuration Manager](https://technet.microsoft.com/itpro/windows/deploy/deploy-windows-10-with-system-center-2012-r2-configuration-manager)
|
||||
|
||||
|
||||
|
||||
|
@ -263,7 +263,7 @@ After you have prepared the USB drive for boot, the next step is to generate off
|
||||
21. In the **Deployment Workbench** under the **Media** folder, right-click the newly created **MEDIA001** and click **Update Media Content**, as shown in Figure 12. This will update the media files with the content of the **Microsoft Surface Deployment Accelerator** deployment share.
|
||||
|
||||

|
||||
|
||||
|
||||
*Figure 12. Select the Update Media Content option*
|
||||
|
||||
22. The **Update Media Content** window is displayed and shows the progress as the media files are created. When the process completes, click **Finish.**
|
||||
@ -313,7 +313,7 @@ The **2 – Create Windows Reference Image** task sequence is used to perform a
|
||||
Like the **1 – Deploy Microsoft Surface** task sequence, the **2 – Create Windows Reference Image** task sequence performs a deployment of the unaltered Windows image directly from the installation media. Creation of a reference image should always be performed on a virtual machine. Using a virtual machine as your reference system helps to ensure that the resulting image is compatible with different hardware configurations.
|
||||
|
||||
>[!NOTE]
|
||||
>Using a virtual machine when you create a reference image for Windows deployment is a recommended practice for performing Windows deployments with Microsoft deployment tools including the Microsoft Deployment Toolkit and System Center Configuration Manager. These Microsoft deployment technologies use the hardware agnostic images produced from a virtual machine and a collection of managed drivers to deploy to different configurations of hardware. For more information, see [Deploy a Windows 10 image using MDT 2013 Update 2](http://technet.microsoft.com/itpro/windows/deploy/deploy-a-windows-10-image-using-mdt).
|
||||
>Using a virtual machine when you create a reference image for Windows deployment is a recommended practice for performing Windows deployments with Microsoft deployment tools including the Microsoft Deployment Toolkit and System Center Configuration Manager. These Microsoft deployment technologies use the hardware agnostic images produced from a virtual machine and a collection of managed drivers to deploy to different configurations of hardware. For more information, see [Deploy a Windows 10 image using MDT 2013 Update 2](https://technet.microsoft.com/itpro/windows/deploy/deploy-a-windows-10-image-using-mdt).
|
||||
|
||||
|
||||
In addition to the information required by the **1 – Deploy Microsoft Surface** task sequence, you will also be prompted to capture an image when you run this task sequence on your reference virtual machine. The **Location** and **File name** fields are automatically populated with the proper information for your deployment share. All that you need to do is select the **Capture an image of this reference computer** option when you are prompted on the **Capture Image** page of the Windows Deployment Wizard.
|
||||
|
Reference in New Issue
Block a user