Merge remote-tracking branch 'refs/remotes/origin/rs1' into jdrs

This commit is contained in:
jdeckerMS 2016-06-22 08:06:03 -07:00
commit 77e8bb57ac
1556 changed files with 9335 additions and 1608 deletions

View File

@ -308,7 +308,7 @@ PrintAction "Creating a new account..."
try
{
$mailbox = $null
$mailbox = (New-Mailbox -UserPrincipalName $credNewAccount.UserName -Alias $credNewAccount.UserName.substring(0,$credNewAccount.UserName.indexOf('@')) -room -Name $strDisplayName -RoomMailboxPassword $credNewAccount.Password -EnableRoomMailboxAccount $true)
$mailbox = (New-Mailbox -UserPrincipalName $credNewAccount.UserName -Alias $credNewAccount.UserName.substring(0,$credNewAccount.UserName.indexOf('@')) -room -Name $strDisplayName -RoomMailboxPassword $credNewAccount.Password -EnableRoomMailboxAccount $true)
} catch { }
ExitIfError "Failed to create a new mailbox on exchange.";
$status["Mailbox Setup"] = "Successfully created a mailbox for the new account"
@ -320,9 +320,9 @@ PrintSuccess "The following mailbox has been created for this room: $strEmail"
## Create or retrieve a policy that will be applied to surface hub devices ##
# The policy disables requiring a device password so that the SurfaceHub does not need to be lockable to use Active Sync
$strPolicy = Read-Host 'Please enter the name for a new Surface Hub ActiveSync policy that will be created and applied to this account.
$strPolicy = Read-Host 'Please enter the name for a new Surface Hub ActiveSync policy that will be created and applied to this account.
We will configure that policy to be compatible with Surface Hub devices.
If this script has been used before, please enter the name of the existing policy.'
If this script has been used before, please enter the name of the existing policy.'
$easpolicy = $null
try {
@ -448,11 +448,11 @@ try {
} catch { }
if ($Error)
{
$status["Calendar Response Configuration"] = "Failed to configure the account's response properties"
$status["Calendar Response Configuration"] = "Failed to configure the account's response properties"
}
else
{
$status["Calendar Response Configuration"] = "Successfully configured the account's response properties"
$status["Calendar Response Configuration"] = "Successfully configured the account's response properties"
}
$Error.Clear()
@ -692,9 +692,9 @@ PrintSuccess "The following mailbox has been created for this room: $strEmail"
## Create or retrieve a policy that will be applied to surface hub devices ##
# The policy disables requiring a device password so that the SurfaceHub does not need to be lockable to use Active Sync
$strPolicy = Read-Host 'Please enter the name for a new Surface Hub ActiveSync policy that will be created and applied to this account.
$strPolicy = Read-Host 'Please enter the name for a new Surface Hub ActiveSync policy that will be created and applied to this account.
We will configure that policy to be compatible with Surface Hub devices.
If this script has been used before, please enter the name of the existing policy.'
If this script has been used before, please enter the name of the existing policy.'
$easpolicy = $null
try {
@ -824,11 +824,11 @@ try {
} catch { }
if ($Error)
{
$status["Calendar Response Configuration"] = "Failed to configure the account's response properties"
$status["Calendar Response Configuration"] = "Failed to configure the account's response properties"
}
else
{
$status["Calendar Response Configuration"] = "Successfully configured the account's response properties"
$status["Calendar Response Configuration"] = "Successfully configured the account's response properties"
}
$Error.Clear()
@ -866,7 +866,7 @@ catch {}
$Error.Clear()
if (![System.String]::IsNullOrEmpty($strRegPool))
{
$strRegPool = $strRegPool.Substring($strRegPool[0].IndexOf(':') + 1)
$strRegPool = $strRegPool.Substring($strRegPool[0].IndexOf(':') + 1)
}
<#
$strRegPoolEntry = Read-Host "Enter a Skype for Business Registrar Pool, or leave blank to use [$strRegPool]"
@ -927,7 +927,7 @@ else
$iLicenseIndex = 0;
do
{
$iLicenseIndex = Read-Host &#39;Choose the number for the SKU you want to pick&#39;
$iLicenseIndex = Read-Host 'Choose the number for the SKU you want to pick'
} while ($iLicenseIndex -lt 1 -or $iLicenseIndex -gt $skus.Length)
$strLicenses = $skus[$iLicenseIndex - 1].AccountSkuId
@ -1061,7 +1061,7 @@ function ExitIfError($strMsg)
}
$strUpn = Read-Host "What is the email address of the account you wish to validate?"
if (!$strUpn.Contains(&#39;@&#39;))
if (!$strUpn.Contains('@'))
{
CleanupAndFail "$strUpn is not a valid email address"
}
@ -1192,7 +1192,7 @@ if ($fHasOnline)
}
catch
{
# This really shouldn&#39;t happen unless there is a network error
# This really shouldn't happen unless there is a network error
CleanupAndFail "Failed to connect to MSOnline"
}
}
@ -1247,8 +1247,8 @@ $credLinkedDomain = $Null
if (!$fExIsOnline -and ![System.String]::IsNullOrEmpty($mailbox.LinkedMasterAccount) -and !$mailbox.LinkedMasterAccount.EndsWith("\SELF"))
{
$strLinkedAccount = $mailbox.LinkedMasterAccount
$strLinkedDomain = $strLinkedAccount.substring(0,$strLinkedAccount.IndexOf(&#39;\&#39;))
$strLinkedUser = $strLinkedAccount.substring($strLinkedAccount.IndexOf(&#39;\&#39;) + 1)
$strLinkedDomain = $strLinkedAccount.substring(0,$strLinkedAccount.IndexOf('\'))
$strLinkedUser = $strLinkedAccount.substring($strLinkedAccount.IndexOf('\') + 1)
$strLinkedServer = Read-Host "What is the domain controller for the $strLinkedDomain"
$credLinkedDomain = (Get-Credential -Message "Please provide credentials for $strLinkedDomain")
}
@ -1276,7 +1276,7 @@ function Validate()
[switch]$WarningOnly
)
Write-Host -NoNewline -ForegroundColor White $Test.PadRight(100,&#39;.&#39;)
Write-Host -NoNewline -ForegroundColor White $Test.PadRight(100,'.')
if ($Condition)
{
Write-Host -ForegroundColor Green "Passed"
@ -1301,7 +1301,7 @@ function Validate()
Validate -WarningOnly -Test "The mailbox $strUpn is enabled as a room account" -Condition ($mailbox.RoomMailboxAccountEnabled -eq $True) -FailureMsg "RoomMailboxEnabled - without a device account, the Surface Hub will not be able to use various key features."
$calendarProcessing = Get-CalendarProcessing -Identity $strUpn -WarningAction SilentlyContinue -ErrorAction SilentlyContinue
Validate -Test "The mailbox $strUpn is configured to accept meeting requests" -Condition ($calendarProcessing -ne $null -and $calendarProcessing.AutomateProcessing -eq &#39;AutoAccept&#39;) -FailureMsg "AutomateProcessing - the Surface Hub will not be able to send mail or sync its calendar."
Validate -Test "The mailbox $strUpn is configured to accept meeting requests" -Condition ($calendarProcessing -ne $null -and $calendarProcessing.AutomateProcessing -eq 'AutoAccept') -FailureMsg "AutomateProcessing - the Surface Hub will not be able to send mail or sync its calendar."
Validate -WarningOnly -Test "The mailbox $strUpn will not delete meeting comments" -Condition ($calendarProcessing -ne $null -and !$calendarProcessing.DeleteComments) -FailureMsg "DeleteComments - the Surface Hub may be missing some meeting information on the welcome screen and Skype."
Validate -WarningOnly -Test "The mailbox $strUpn keeps private meetings private" -Condition ($calendarProcessing -ne $null -and !$calendarProcessing.RemovePrivateProperty) -FailureMsg "RemovePrivateProperty - the Surface Hub will make show private meetings."
Validate -Test "The mailbox $strUpn keeps meeting subjects" -Condition ($calendarProcessing -ne $null -and !$calendarProcessing.DeleteSubject) -FailureMsg "DeleteSubject - the Surface Hub will not keep meeting subject information."
@ -1346,10 +1346,10 @@ if ($casMailbox)
# Check the default access level
$orgSettings = Get-ActiveSyncOrganizationSettings
$strDefaultAccessLevel = $orgSettings.DefaultAccessLevel
Validate -Test "ActiveSync devices are allowed" -Condition ($strDefaultAccessLevel -eq &#39;Allow&#39;) -FailureMsg "DeviceType Windows Mail is accessible - devices are not allowed by default - the surface hub will not be able to send mail or sync its calendar."
Validate -Test "ActiveSync devices are allowed" -Condition ($strDefaultAccessLevel -eq 'Allow') -FailureMsg "DeviceType Windows Mail is accessible - devices are not allowed by default - the surface hub will not be able to send mail or sync its calendar."
# Check if there exists a device access rule that bans the device type Windows Mail
$blockingRules = Get-ActiveSyncDeviceAccessRule | where {($_.AccessLevel -eq &#39;Block&#39; -or $_.AccessLevel -eq &#39;Quarantine&#39;) -and $_.Characteristic -eq &#39;DeviceType&#39;-and $_.QueryString -eq &#39;WindowsMail&#39;}
$blockingRules = Get-ActiveSyncDeviceAccessRule | where {($_.AccessLevel -eq 'Block' -or $_.AccessLevel -eq 'Quarantine') -and $_.Characteristic -eq 'DeviceType'-and $_.QueryString -eq 'WindowsMail'}
Validate -Test "Windows mail devices are not blocked or quarantined" -Condition ($blockingRules -eq $null -or $blockingRules.Length -eq 0) -FailureMsg "DeviceType Windows Mail is accessible - devices are blocked or quaratined - the surface hub will not be able to send mail or sync its calendar."
## End Exchange ##
@ -1390,7 +1390,7 @@ if ($fHasOnline)
Validate -Test "There is an online user account for $strUpn" -Condition ($accountOnline -ne $null) -FailureMsg "Could not find a Microsoft Online account for this user even though some services are online"
if ($accountOnline)
{
Validate -Test "The password for $strUpn will not expire" -Condition ($accountOnline.PasswordNeverExpires -eq $True) -FailureMsg "PasswordNeverExpires - the admin will need to update the device account&#39;s password on the Surface Hub when it expires."
Validate -Test "The password for $strUpn will not expire" -Condition ($accountOnline.PasswordNeverExpires -eq $True) -FailureMsg "PasswordNeverExpires - the admin will need to update the device account's password on the Surface Hub when it expires."
if ($fIsSfbOnline -and !$fIsExOnline)
{
$strLicenseFailureMsg = "Has O365 license - The devices will not be able to use Skype for Business services."
@ -1426,7 +1426,7 @@ if ($fHasOnPrem)
Validate -Test "There is a user account for $strOnPremUpn" -Condition ($accountOnprem -ne $null) -FailureMsg "Could not find an Active Directory account for this user"
if ($accountOnPrem)
{
Validate -WarningOnly -Test "The password for $strOnPremUpn will not expire" -Condition ($accountOnprem.PasswordNeverExpires -eq $True) -FailureMsg "PasswordNeverExpires - the admin will need to update the device account&#39;s password on the Surface Hub when it expires."
Validate -WarningOnly -Test "The password for $strOnPremUpn will not expire" -Condition ($accountOnprem.PasswordNeverExpires -eq $True) -FailureMsg "PasswordNeverExpires - the admin will need to update the device account's password on the Surface Hub when it expires."
Validate -Test "$strOnPremUpn is enabled" -Condition $accountOnPrem.Enabled -FailureMsg "AccountEnabled - this device account will not sign in"
}
}
@ -1529,7 +1529,7 @@ else
## Collect account data ##
Write-Host "----------- Enter info for the account to enable -----------." -foregroundcolor "magenta"
$strRoomUri=Read-Host &#39;Please enter the UPN of the account you are enabling (e.g. confroom@surfacehub.microsoft.com)&#39;
$strRoomUri=Read-Host 'Please enter the UPN of the account you are enabling (e.g. confroom@surfacehub.microsoft.com)'
if ([System.String]::IsNullOrEmpty($strRoomUri))
{
@ -1586,7 +1586,7 @@ if ($online)
}
else
{
$strRegPool = $strRegPool[0].Substring($strRegPool[0].IndexOf(&#39;:&#39;) + 1)
$strRegPool = $strRegPool[0].Substring($strRegPool[0].IndexOf(':') + 1)
}
}

View File

@ -40,10 +40,10 @@ Use this procedure if you use Exchange on-prem.
Open your on-prem Exchange Management Shell with administrator permissions, and run this cmdlet.
```ps1
Enable-Mailbox &#39;HUB01@contoso.com&#39; -RemoteRoutingAddress &#39;HUB01@contoso.com&#39; -Room
Enable-Mailbox 'HUB01@contoso.com' -RemoteRoutingAddress 'HUB01@contoso.com' -Room
```
5. Connect to Microsoft Exchange Online and set some properties for the account in Office 365.
4. Connect to Microsoft Exchange Online and set some properties for the account in Office 365.
Start a remote PowerShell session on a PC and connect to Microsoft Exchange. Be sure you have the right permissions set to run the associated cmdlets.
@ -51,9 +51,9 @@ Use this procedure if you use Exchange on-prem.
```ps1
Set-ExecutionPolicy Unrestricted
$org=&#39;contoso.com&#39;
$org='contoso.com'
$cred=Get-Credential $admin@$org
$sess= New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri &#39;https://outlook.office365.com/ps1-liveid/&#39; -Credential $cred -Authentication Basic -AllowRedirection
$sess= New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri 'https://outlook.office365.com/ps1-liveid/' -Credential $cred -Authentication Basic -AllowRedirection
Import-PSSession $sess
```
@ -70,7 +70,7 @@ Use this procedure if you use Exchange on-prem.
Once you have a compatible policy, then you will need to apply the policy to the device account.
```ps1
Set-CASMailbox &#39;HUB01@contoso.com&#39; -ActiveSyncMailboxPolicy $easPolicy
Set-CASMailbox 'HUB01@contoso.com' -ActiveSyncMailboxPolicy $easPolicy
```
6. Set Exchange properties.
@ -78,8 +78,8 @@ Use this procedure if you use Exchange on-prem.
Setting Exchange properties 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.
```ps1
Set-CalendarProcessing -Identity &#39;HUB01@contoso.com&#39; -AutomateProcessing AutoAccept -AddOrganizerToSubject $false AllowConflicts $false DeleteComments $false -DeleteSubject $false -RemovePrivateProperty $false
Set-CalendarProcessing -Identity &#39;HUB01@contoso.com&#39; -AddAdditionalResponse $true -AdditionalResponse &#39;This is a Surface Hub room!&#39;
Set-CalendarProcessing -Identity 'HUB01@contoso.com' -AutomateProcessing AutoAccept -AddOrganizerToSubject $false AllowConflicts $false DeleteComments $false -DeleteSubject $false -RemovePrivateProperty $false
Set-CalendarProcessing -Identity 'HUB01@contoso.com' -AddAdditionalResponse $true -AdditionalResponse 'This is a Surface Hub room!'
```
7. Connect to Azure AD.
@ -99,9 +99,9 @@ Use this procedure if you use Exchange on-prem.
Once you list out the SKUs, you can add a license using the `Set-MsolUserLicense` cmdlet. In this case, `$strLicense` is the SKU code that you see (for example, *contoso:STANDARDPACK*).
```ps1
Set-MsolUser -UserPrincipalName &#39;HUB01@contoso.com&#39; -UsageLocation &#39;US&#39;
Set-MsolUser -UserPrincipalName 'HUB01@contoso.com' -UsageLocation 'US'
Get-MsolAccountSku
Set-MsolUserLicense -UserPrincipalName &#39;HUB01@contoso.com&#39; -AddLicenses $strLicense
Set-MsolUserLicense -UserPrincipalName 'HUB01@contoso.com' -AddLicenses $strLicense
```
9. Enable the device account with Skype for Business.
@ -127,7 +127,7 @@ Use this procedure if you use Exchange on-prem.
```ps1
Enable-CsMeetingRoom -Identity $rm -RegistrarPool
&#39;sippoolbl20a04.infra.lync.com&#39; -SipAddressType EmailAddress
'sippoolbl20a04.infra.lync.com&' -SipAddressType EmailAddress
```
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:
@ -164,7 +164,7 @@ Use this procedure if you use Exchange online.
```ps1
Set-ExecutionPolicy Unrestricted
$org=&#39;contoso.microsoft.com
$org='contoso.microsoft.com'
$cred=Get-Credential $admin@$org
$sess= New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/ps1-liveid/ -Credential $cred -Authentication Basic -AllowRedirection
Import-PSSession $sess
@ -177,13 +177,13 @@ Use this procedure if you use Exchange online.
If you're changing an existing resource mailbox:
```ps1
Set-Mailbox -Identity &#39;HUB01&#39; -EnableRoomMailboxAccount $true -RoomMailboxPassword (ConvertTo-SecureString -String <password> -AsPlainText -Force)
Set-Mailbox -Identity 'HUB01' -EnableRoomMailboxAccount $true -RoomMailboxPassword (ConvertTo-SecureString -String <password> -AsPlainText -Force)
```
If youre creating a new resource mailbox:
```ps1
New-Mailbox -MicrosoftOnlineServicesID &#39;HUB01@contoso.com&#39; -Alias HUB01 -Name "Hub-01" -Room -EnableRoomMailboxAccount $true -RoomMailboxPassword (ConvertTo-SecureString -String <password> -AsPlainText -Force)
New-Mailbox -MicrosoftOnlineServicesID 'HUB01@contoso.com' -Alias HUB01 -Name "Hub-01" -Room -EnableRoomMailboxAccount $true -RoomMailboxPassword (ConvertTo-SecureString -String <password> -AsPlainText -Force)
```
3. Create Exchange ActiveSync policy.
@ -202,9 +202,9 @@ Use this procedure if you use Exchange online.
```ps1
Set-Mailbox $acctUpn -Type Regular
Set-CASMailbox &#39;HUB01@contoso.com&#39; -ActiveSyncMailboxPolicy $easPolicy
Set-Mailbox &#39;HUB01@contoso.com&#39; -Type Room
Set-Mailbox &#39;HUB01@contoso.com&#39; -RoomMailboxPassword $credNewAccount.Password -EnableRoomMailboxAccount $true
Set-CASMailbox 'HUB01@contoso.com' -ActiveSyncMailboxPolicy $easPolicy
Set-Mailbox 'HUB01@contoso.com' -Type Room
Set-Mailbox 'HUB01@contoso.com' -RoomMailboxPassword $credNewAccount.Password -EnableRoomMailboxAccount $true
```
4. Set Exchange properties.
@ -212,8 +212,8 @@ Use this procedure if you use Exchange online.
Various Exchange properties must 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.
```ps1
Set-CalendarProcessing -Identity &#39;HUB01@contoso.com&#39; -AutomateProcessing AutoAccept -AddOrganizerToSubject $false AllowConflicts $false DeleteComments $false -DeleteSubject $false -RemovePrivateProperty $false
Set-CalendarProcessing -Identity &#39;HUB01@contoso.com&#39; -AddAdditionalResponse $true -AdditionalResponse "This is a Surface Hub room!"
Set-CalendarProcessing -Identity 'HUB01@contoso.com' -AutomateProcessing AutoAccept -AddOrganizerToSubject $false AllowConflicts $false DeleteComments $false -DeleteSubject $false -RemovePrivateProperty $false
Set-CalendarProcessing -Identity 'HUB01@contoso.com' -AddAdditionalResponse $true -AdditionalResponse "This is a Surface Hub room!"
```
5. Add email address for your on-prem domain account.
@ -256,9 +256,9 @@ Use this procedure if you use Exchange online.
Once you list out the SKUs, you can add a license using the `Set-MsolUserLicense` cmdlet. In this case, `$strLicense` is the SKU code that you see (for example, *contoso:STANDARDPACK*).
```ps1
Set-MsolUser -UserPrincipalName &#39;HUB01@contoso.com&#39; -UsageLocation &#39;US&#39;
Set-MsolUser -UserPrincipalName 'HUB01@contoso.com' -UsageLocation 'US'
Get-MsolAccountSku
Set-MsolUserLicense -UserPrincipalName &#39;HUB01@contoso.com&#39; -AddLicenses $strLicense
Set-MsolUserLicense -UserPrincipalName 'HUB01@contoso.com' -AddLicenses $strLicense
```
9. Enable the device account with Skype for Business.
@ -285,7 +285,7 @@ Use this procedure if you use Exchange online.
```ps1
Enable-CsMeetingRoom -Identity $rm -RegistrarPool
&#39;sippoolbl20a04.infra.lync.com&#39; -SipAddressType EmailAddress
'sippoolbl20a04.infra.lync.com' -SipAddressType EmailAddress
```
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:

View File

@ -25,7 +25,7 @@ If you have a single-forest on-premises deployment with Microsoft Exchange 2013
```PowerShell
Set-ExecutionPolicy Unrestricted
$org=&#39;contoso.microsoft.com&#39;
$org='contoso.microsoft.com'
$cred=Get-Credential $admin@$org
$sessExchange = New-PSSession -ConfigurationName microsoft.exchange -Credential $cred -AllowRedirection -Authentication Kerberos -ConnectionUri "http://$strExchangeServer/powershell" -WarningAction SilentlyContinue
$sessLync = New-PSSession -Credential $cred -ConnectionURI "https://$strLyncFQDN/OcsPowershell" -AllowRedirection -WarningAction SilentlyContinue
@ -38,7 +38,7 @@ If you have a single-forest on-premises deployment with Microsoft Exchange 2013
If you're changing an existing resource mailbox:
```PowerShell
Set-Mailbox -Identity &#39;HUB01&#39; -EnableRoomMailboxAccount $true -RoomMailboxPassword (ConvertTo-SecureString -String <password> -AsPlainText -Force)
Set-Mailbox -Identity 'HUB01' -EnableRoomMailboxAccount $true -RoomMailboxPassword (ConvertTo-SecureString -String <password> -AsPlainText -Force)
```
If youre creating a new resource mailbox:

View File

@ -23,7 +23,7 @@ If you have a pure, online (O365) deployment, then you can [use the provided Pow
```PowerShell
Set-ExecutionPolicy Unrestricted
$org=&#39;contoso.microsoft.com&#39;
$org='contoso.microsoft.com'
$cred=Get-Credential $admin@$org
$sess= New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $cred -Authentication Basic -AllowRedirection
Import-PSSession $sess
@ -34,7 +34,7 @@ If you have a pure, online (O365) deployment, then you can [use the provided Pow
If you're changing an existing resource mailbox:
```PowerShell
Set-Mailbox -Identity &#39;HUB01&#39; -EnableRoomMailboxAccount $true -RoomMailboxPassword (ConvertTo-SecureString -String <password> -AsPlainText -Force)
Set-Mailbox -Identity 'HUB01' -EnableRoomMailboxAccount $true -RoomMailboxPassword (ConvertTo-SecureString -String <password> -AsPlainText -Force)
```
If youre creating a new resource mailbox:

View File

@ -26,14 +26,14 @@ The following table tells you what you get using the **Set up School PCs** app i
| Feature | No Internet | Azure AD | Office 365 | Azure AD Premium |
| --- | :---: | :---: | :---: | :---: |
| **Fast sign-in**<br/>Each student can sign in and start using the computer in less than a minute, even on their first sign-in. | X | X | X | X |
| **Custom Start experience**\*<br/>The apps students need are pinned to Start, and unnecessary apps are removed. | X | X | X | X |
| **Custom Start experience**<br/>The apps students need are pinned to Start, and unnecessary apps are removed. | X | X | X | X |
| **Temporary access, no sign-in required**<br/>This option sets up computers for common use. Anyone can use the computer without an account. | X | X | X | X |
| **School policies**\*<br/>Settings specific to education create a useful learning environment and the best computer performance. | X | X | X | X |
| **School policies**<br/>Settings specific to education create a useful learning environment and the best computer performance. | X | X | X | X |
| **Azure AD Join**<br/>The computers are joined to your Azure AD or Office 365 subscription for centralized management. | | X | X | X |
| **Single sign-on to Office 365**<br/>By signing on with student IDs, students have fast access to Office 365 web apps. | | | X | X |
| **[Settings roaming](https://azure.microsoft.com/en-us/documentation/articles/active-directory-windows-enterprise-state-roaming-overview/) via Azure AD**<br/>Student user and application settings data can be synchronized across devices for a personalized experience. | | | | X |
| | | | | |
\* Feature applies to Windows 10 Pro, Windows 10 Pro for Education, Windows 10 Enterprise, and Windows 10 Enterprise for EDU
> **Note**: If your school uses Active Directory, use Windows Imaging and Configuration Designer to configure your PCs to join the domain. You can only use the **Set up School PCs** app to set up PCs that are not connected to your traditional domain.
@ -244,7 +244,6 @@ The **Set up School PCs** app produces a specialized provisioning package that m
<tr> <td colspan="2"> <p> <strong>Windows Settings</strong> > <strong>Security Settings</strong> > <strong>Local Policies</strong> > <strong>Security Options</strong></p> </td>
</tr>
<tr><td><p>Accounts: Block Microsoft accounts</p></td><td><p>Enabled</p></td></tr>
<tr> <td> <p> Interactive logon: Do not display last user name </p> </td> <td> <p> Enabled</p> </td>
</tr>
<tr> <td> <p> Interactive logon: Sign-in last interactive user automatically after a system-initiated restart</p> </td> <td> <p> Disabled</p> </td>

View File

@ -28,7 +28,7 @@ Many schools use online testing for formative and summative assessments. It's cr
- Cortana is turned off.
**Take a Test** is included in version 1607 of Windows 10 Pro, Pro Education, Education and Enterprise.
## How you use Take a Test

View File

@ -30,7 +30,7 @@ The **Take a Test** app in Windows 10, Version 1607, creates the right environme
> **Tip!**
> To exit **Take a Test**, press Ctrl+Alt+Delete.
**Take a Test** is included in version 1607 of Windows 10 Pro, Pro Education, Education and Enterprise.
## How you use Take a Test

View File

@ -28,7 +28,6 @@ Many schools use online testing for formative and summative assessments. It's cr
- Cortana is turned off.
**Take a Test** is included in version 1607 of Windows 10 Pro, Pro Education, Education and Enterprise.
## How you use Take a Test

View File

@ -1,10 +1,15 @@
---
title: Administrative Template Settings
description: Administrative Template Settings
ms.assetid: 1abbf0c1-fd32-46a8-a3ba-c005f066523d
author: jamiejdt
ms.assetid: 1abbf0c1-fd32-46a8-a3ba-c005f066523d
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Administrative Template Settings

View File

@ -1,10 +1,15 @@
---
title: Administrative Templates Folder
description: Administrative Templates Folder
ms.assetid: 0cc5b570-b6d3-4841-9646-02521c13519c
author: jamiejdt
ms.assetid: 0cc5b570-b6d3-4841-9646-02521c13519c
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Administrative Templates Folder

View File

@ -1,10 +1,15 @@
---
title: Administrative Templates Folder
description: Administrative Templates Folder
ms.assetid: abc41968-4505-4b09-94f2-67ee0e6c9aaf
author: jamiejdt
ms.assetid: abc41968-4505-4b09-94f2-67ee0e6c9aaf
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Administrative Templates Folder

View File

@ -1,10 +1,15 @@
---
title: Advanced Group Policy Management 4.0
description: Advanced Group Policy Management 4.0
ms.assetid: 9873a1f7-97fc-4546-9538-b4c0308529c0
author: jamiejdt
ms.assetid: 9873a1f7-97fc-4546-9538-b4c0308529c0
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Advanced Group Policy Management 4.0

View File

@ -1,10 +1,15 @@
---
title: AGPM 2.5
description: AGPM 2.5
ms.assetid: 6db42f2e-88b2-4305-ab6b-d3cd0c5d686c
author: jamiejdt
ms.assetid: 6db42f2e-88b2-4305-ab6b-d3cd0c5d686c
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# AGPM 2.5

View File

@ -1,10 +1,15 @@
---
title: AGPM 3
description: AGPM 3
ms.assetid: b0d0051d-2900-4a0f-8307-552ad26b0e3b
author: jamiejdt
ms.assetid: b0d0051d-2900-4a0f-8307-552ad26b0e3b
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# AGPM 3

View File

@ -1,10 +1,15 @@
---
title: AGPM 4
description: AGPM 4
ms.assetid: 81693f30-1b8e-4e63-b1ac-e6de1bc30cc0
author: jamiejdt
ms.assetid: 81693f30-1b8e-4e63-b1ac-e6de1bc30cc0
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# AGPM 4

View File

@ -1,10 +1,15 @@
---
title: AGPM 4.0 SP1
description: AGPM 4.0 SP1
ms.assetid: 4e55d9e6-635c-4ba6-acbb-ed1d1b580a5b
author: jamiejdt
ms.assetid: 4e55d9e6-635c-4ba6-acbb-ed1d1b580a5b
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# AGPM 4.0 SP1

View File

@ -1,10 +1,15 @@
---
title: AGPM 4.0 SP2
description: AGPM 4.0 SP2
ms.assetid: 915c9791-ac07-43db-bd53-957b641c700f
author: jamiejdt
ms.assetid: 915c9791-ac07-43db-bd53-957b641c700f
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# AGPM 4.0 SP2

View File

@ -1,10 +1,15 @@
---
title: AGPM 4.0 SP3
description: AGPM 4.0 SP3
ms.assetid: cd80eea9-601f-4e45-b89e-c3904addee37
author: jamiejdt
ms.assetid: cd80eea9-601f-4e45-b89e-c3904addee37
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# AGPM 4.0 SP3

View File

@ -1,10 +1,15 @@
---
title: AGPM Server Connection Settings
description: AGPM Server Connection Settings
ms.assetid: 5f03e397-b868-4c49-9cbf-a5f5d0ddcc39
author: jamiejdt
ms.assetid: 5f03e397-b868-4c49-9cbf-a5f5d0ddcc39
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# AGPM Server Connection Settings

View File

@ -1,10 +1,15 @@
---
title: AGPM Server Connection Settings
description: AGPM Server Connection Settings
ms.assetid: cc67f122-6309-4820-92c2-f6a27d897123
author: jamiejdt
ms.assetid: cc67f122-6309-4820-92c2-f6a27d897123
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# AGPM Server Connection Settings

View File

@ -1,10 +1,15 @@
---
title: AGPM Server Connection Settings
description: AGPM Server Connection Settings
ms.assetid: faf78e5b-2b0d-4069-9b8c-910add892200
author: jamiejdt
ms.assetid: faf78e5b-2b0d-4069-9b8c-910add892200
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# AGPM Server Connection Settings

View File

@ -1,10 +1,15 @@
---
title: AGPM Server Tab
description: AGPM Server Tab
ms.assetid: fb3b0265-53ed-4bf6-88a4-c409f5f1bed4
author: jamiejdt
ms.assetid: fb3b0265-53ed-4bf6-88a4-c409f5f1bed4
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# AGPM Server Tab

View File

@ -1,10 +1,15 @@
---
title: AGPM Server Tab
description: AGPM Server Tab
ms.assetid: a6689437-233e-4f33-a0d6-f7d432c96c00
author: jamiejdt
ms.assetid: a6689437-233e-4f33-a0d6-f7d432c96c00
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# AGPM Server Tab

View File

@ -1,10 +1,15 @@
---
title: AGPM Server Tab
description: AGPM Server Tab
ms.assetid: ce4490b7-b564-49af-8962-858ee39e0016
author: jamiejdt
ms.assetid: ce4490b7-b564-49af-8962-858ee39e0016
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# AGPM Server Tab

View File

@ -1,10 +1,15 @@
---
title: Approve or Reject a Pending Action
description: Approve or Reject a Pending Action
ms.assetid: 6d78989a-b600-4876-9dd9-bc6207ff2ce7
author: jamiejdt
ms.assetid: 6d78989a-b600-4876-9dd9-bc6207ff2ce7
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Approve or Reject a Pending Action

View File

@ -1,10 +1,15 @@
---
title: Approve or Reject a Pending Action
description: Approve or Reject a Pending Action
ms.assetid: 078ea8b5-9ac5-45fc-9ac1-a1aa629c10b4
author: jamiejdt
ms.assetid: 078ea8b5-9ac5-45fc-9ac1-a1aa629c10b4
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Approve or Reject a Pending Action

View File

@ -1,10 +1,15 @@
---
title: Approve or Reject a Pending Action
description: Approve or Reject a Pending Action
ms.assetid: 22921a51-50fb-4a47-bec1-4f563f523675
author: jamiejdt
ms.assetid: 22921a51-50fb-4a47-bec1-4f563f523675
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Approve or Reject a Pending Action

View File

@ -1,10 +1,15 @@
---
title: Back Up the Archive
description: Back Up the Archive
ms.assetid: 538d85eb-3596-4c1d-bbd7-26bc28857c28
author: jamiejdt
ms.assetid: 538d85eb-3596-4c1d-bbd7-26bc28857c28
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Back Up the Archive

View File

@ -1,10 +1,15 @@
---
title: Back Up the Archive
description: Back Up the Archive
ms.assetid: 400176da-3518-4475-ad19-c96cda6ca7ba
author: jamiejdt
ms.assetid: 400176da-3518-4475-ad19-c96cda6ca7ba
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Back Up the Archive

View File

@ -1,10 +1,15 @@
---
title: Best Practices for Version Control
description: Best Practices for Version Control
ms.assetid: 4a2a1ac7-67f3-4ba3-ab07-860d33da0efe
author: jamiejdt
ms.assetid: 4a2a1ac7-67f3-4ba3-ab07-860d33da0efe
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Best Practices for Version Control

View File

@ -1,10 +1,15 @@
---
title: Best Practices for Version Control
description: Best Practices for Version Control
ms.assetid: 89067f6a-f7ea-4dad-999d-118284cf6c5a
author: jamiejdt
ms.assetid: 89067f6a-f7ea-4dad-999d-118284cf6c5a
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Best Practices for Version Control

View File

@ -1,10 +1,15 @@
---
title: Check In a GPO
description: Check In a GPO
ms.assetid: 437397db-c94b-4940-b1a4-05442619ebee
author: jamiejdt
ms.assetid: 437397db-c94b-4940-b1a4-05442619ebee
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Check In a GPO

View File

@ -1,10 +1,15 @@
---
title: Check In a GPO
description: Check In a GPO
ms.assetid: b838c8a2-eb9e-4e5b-8740-d7701a4294ac
author: jamiejdt
ms.assetid: b838c8a2-eb9e-4e5b-8740-d7701a4294ac
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Check In a GPO

View File

@ -1,10 +1,15 @@
---
title: Check In a GPO
description: Check In a GPO
ms.assetid: e428cfff-651f-4903-bf01-d742714d2fa9
author: jamiejdt
ms.assetid: e428cfff-651f-4903-bf01-d742714d2fa9
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Check In a GPO

View File

@ -1,10 +1,15 @@
---
title: Checklist Administer the AGPM Server and Archive
description: Checklist Administer the AGPM Server and Archive
ms.assetid: d9c60203-90c2-48a7-9318-197e0ec5038b
author: jamiejdt
ms.assetid: d9c60203-90c2-48a7-9318-197e0ec5038b
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Checklist: Administer the AGPM Server and Archive

View File

@ -1,10 +1,15 @@
---
title: Checklist Administer the AGPM Server and Archive
description: Checklist Administer the AGPM Server and Archive
ms.assetid: 0b2eb536-c3cc-462f-a42f-27a53f57bc55
author: jamiejdt
ms.assetid: 0b2eb536-c3cc-462f-a42f-27a53f57bc55
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Checklist: Administer the AGPM Server and Archive

View File

@ -1,10 +1,15 @@
---
title: Checklist Create, Edit, and Deploy a GPO
description: Checklist Create, Edit, and Deploy a GPO
ms.assetid: a7a17706-304a-4455-9ada-52508ec620f1
author: jamiejdt
ms.assetid: a7a17706-304a-4455-9ada-52508ec620f1
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Checklist: Create, Edit, and Deploy a GPO

View File

@ -1,10 +1,15 @@
---
title: Checklist Create, Edit, and Deploy a GPO
description: Checklist Create, Edit, and Deploy a GPO
ms.assetid: 44631bed-16d2-4b5a-af70-17a73fb5f6af
author: jamiejdt
ms.assetid: 44631bed-16d2-4b5a-af70-17a73fb5f6af
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Checklist: Create, Edit, and Deploy a GPO

View File

@ -1,10 +1,15 @@
---
title: Checklist Create, Edit, and Deploy a GPO
description: Checklist Create, Edit, and Deploy a GPO
ms.assetid: 614e2d9a-c18b-4f62-99fd-e17a2ac8559d
author: jamiejdt
ms.assetid: 614e2d9a-c18b-4f62-99fd-e17a2ac8559d
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Checklist: Create, Edit, and Deploy a GPO

View File

@ -1,10 +1,15 @@
---
title: Choosing Which Version of AGPM to Install
description: Choosing Which Version of AGPM to Install
ms.assetid: 31357d2a-bc23-4e15-93f4-0beda8ab7a7b
author: jamiejdt
ms.assetid: 31357d2a-bc23-4e15-93f4-0beda8ab7a7b
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Choosing Which Version of AGPM to Install

View File

@ -1,10 +1,15 @@
---
title: Common Secondary Tab Features
description: Common Secondary Tab Features
ms.assetid: 44a15c28-944c-49c1-8534-115ce1c362ed
author: jamiejdt
ms.assetid: 44a15c28-944c-49c1-8534-115ce1c362ed
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Common Secondary Tab Features

View File

@ -1,10 +1,15 @@
---
title: Configure AGPM Server Connections
description: Configure AGPM Server Connections
ms.assetid: 6062b77b-2fd7-442c-ad1b-6f14419ebd5f
author: jamiejdt
ms.assetid: 6062b77b-2fd7-442c-ad1b-6f14419ebd5f
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Configure AGPM Server Connections

View File

@ -1,10 +1,15 @@
---
title: Configure AGPM Server Connections
description: Configure AGPM Server Connections
ms.assetid: bbbb15e8-35e7-403c-b695-7a6ebeb87839
author: jamiejdt
ms.assetid: bbbb15e8-35e7-403c-b695-7a6ebeb87839
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Configure AGPM Server Connections

View File

@ -1,10 +1,15 @@
---
title: Configure an AGPM Server Connection
description: Configure an AGPM Server Connection
ms.assetid: 409cbbcf-3b0e-459d-9bd2-75cb7b9430b0
author: jamiejdt
ms.assetid: 409cbbcf-3b0e-459d-9bd2-75cb7b9430b0
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Configure an AGPM Server Connection

View File

@ -1,10 +1,15 @@
---
title: Configure an AGPM Server Connection
description: Configure an AGPM Server Connection
ms.assetid: ae78dc74-111d-4509-b0a6-e8b8b451c22a
author: jamiejdt
ms.assetid: ae78dc74-111d-4509-b0a6-e8b8b451c22a
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Configure an AGPM Server Connection

View File

@ -1,10 +1,15 @@
---
title: Configure E-Mail Notification
description: Configure E-Mail Notification
ms.assetid: b32ce395-d1b9-4c5b-b765-97cdbf455f9e
author: jamiejdt
ms.assetid: b32ce395-d1b9-4c5b-b765-97cdbf455f9e
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Configure E-Mail Notification

View File

@ -1,10 +1,15 @@
---
title: Configure E-Mail Notification
description: Configure E-Mail Notification
ms.assetid: 06f19556-f296-4a80-86a4-4f446c992204
author: jamiejdt
ms.assetid: 06f19556-f296-4a80-86a4-4f446c992204
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Configure E-Mail Notification

View File

@ -1,10 +1,15 @@
---
title: Configure E-Mail Notification
description: Configure E-Mail Notification
ms.assetid: 6e152de0-4376-4963-8d1a-3e7f5866d30f
author: jamiejdt
ms.assetid: 6e152de0-4376-4963-8d1a-3e7f5866d30f
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Configure E-Mail Notification

View File

@ -1,10 +1,15 @@
---
title: Configure E-Mail Security for AGPM
description: Configure E-Mail Security for AGPM
ms.assetid: 4850ed8e-a1c6-43f0-95c5-853aa66a94ae
author: jamiejdt
ms.assetid: 4850ed8e-a1c6-43f0-95c5-853aa66a94ae
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Configure E-Mail Security for AGPM

View File

@ -1,10 +1,15 @@
---
title: Configure E-Mail Security for AGPM
description: Configure E-Mail Security for AGPM
ms.assetid: b9c48894-0a10-4d03-8027-50ed3b02485a
author: jamiejdt
ms.assetid: b9c48894-0a10-4d03-8027-50ed3b02485a
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Configure E-Mail Security for AGPM

View File

@ -1,10 +1,15 @@
---
title: Configure Logging and Tracing
description: Configure Logging and Tracing
ms.assetid: 4f89552f-e949-48b0-9325-23746034eaa4
author: jamiejdt
ms.assetid: 4f89552f-e949-48b0-9325-23746034eaa4
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Configure Logging and Tracing

View File

@ -1,10 +1,15 @@
---
title: Configure Logging and Tracing
description: Configure Logging and Tracing
ms.assetid: 2418cb6a-7189-4080-8fe2-9c8d47dec62c
author: jamiejdt
ms.assetid: 2418cb6a-7189-4080-8fe2-9c8d47dec62c
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Configure Logging and Tracing

View File

@ -1,10 +1,15 @@
---
title: Configure Logging and Tracing
description: Configure Logging and Tracing
ms.assetid: 419231f9-e9db-4f91-a7cf-a0a73db25256
author: jamiejdt
ms.assetid: 419231f9-e9db-4f91-a7cf-a0a73db25256
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Configure Logging and Tracing

View File

@ -1,10 +1,15 @@
---
title: Configure the AGPM Server Connection
description: Configure the AGPM Server Connection
ms.assetid: 74e8f348-a8ed-4d69-a8e0-9c974aaeca2d
author: jamiejdt
ms.assetid: 74e8f348-a8ed-4d69-a8e0-9c974aaeca2d
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Configure the AGPM Server Connection

View File

@ -1,10 +1,15 @@
---
title: Configure the AGPM Server Connection
description: Configure the AGPM Server Connection
ms.assetid: 9a42b5bc-41be-44ef-a6e2-6f56e2cf1996
author: jamiejdt
ms.assetid: 9a42b5bc-41be-44ef-a6e2-6f56e2cf1996
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Configure the AGPM Server Connection

View File

@ -1,10 +1,15 @@
---
title: Configuring Advanced Group Policy Management
description: Configuring Advanced Group Policy Management
ms.assetid: 8c978ddf-2789-44e4-9c08-de7b4cd1afa0
author: jamiejdt
ms.assetid: 8c978ddf-2789-44e4-9c08-de7b4cd1afa0
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Configuring Advanced Group Policy Management

View File

@ -1,10 +1,15 @@
---
title: Configuring Advanced Group Policy Management
description: Configuring Advanced Group Policy Management
ms.assetid: 836f4a49-2c77-4f6b-8727-9df7ef443141
author: jamiejdt
ms.assetid: 836f4a49-2c77-4f6b-8727-9df7ef443141
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Configuring Advanced Group Policy Management

View File

@ -1,10 +1,15 @@
---
title: Contents Tab
description: Contents Tab
ms.assetid: 6ada6430-cd93-47aa-af6e-d7f5b5620132
author: jamiejdt
ms.assetid: 6ada6430-cd93-47aa-af6e-d7f5b5620132
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Contents Tab

View File

@ -1,10 +1,15 @@
---
title: Contents Tab
description: Contents Tab
ms.assetid: cf9d1f17-3c3d-422f-bd6b-3db87be45554
author: jamiejdt
ms.assetid: cf9d1f17-3c3d-422f-bd6b-3db87be45554
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Contents Tab

View File

@ -1,10 +1,15 @@
---
title: Contents Tab Features
description: Contents Tab Features
ms.assetid: 725f025a-c30a-4d07-add1-4e0ed9a1a5fd
author: jamiejdt
ms.assetid: 725f025a-c30a-4d07-add1-4e0ed9a1a5fd
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Contents Tab Features

View File

@ -1,10 +1,15 @@
---
title: Contents Tab Features
description: Contents Tab Features
ms.assetid: f1f4849d-bf94-47d5-ad81-0eee33abcaca
author: jamiejdt
ms.assetid: f1f4849d-bf94-47d5-ad81-0eee33abcaca
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Contents Tab Features

View File

@ -1,10 +1,15 @@
---
title: Contents Tab
description: Contents Tab
ms.assetid: 8a756bc1-3900-4d83-93c4-7ebc4705d956
author: jamiejdt
ms.assetid: 8a756bc1-3900-4d83-93c4-7ebc4705d956
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Contents Tab

View File

@ -1,10 +1,15 @@
---
title: Control a Previously Uncontrolled GPO
description: Control a Previously Uncontrolled GPO
ms.assetid: 452689a9-4e32-4e3b-8208-56353a82bf36
author: jamiejdt
ms.assetid: 452689a9-4e32-4e3b-8208-56353a82bf36
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Control a Previously Uncontrolled GPO

View File

@ -1,10 +1,15 @@
---
title: Control an Uncontrolled GPO
description: Control an Uncontrolled GPO
ms.assetid: 603f00f9-1e65-4b2f-902a-e53dafedbd8d
author: jamiejdt
ms.assetid: 603f00f9-1e65-4b2f-902a-e53dafedbd8d
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Control an Uncontrolled GPO

View File

@ -1,10 +1,15 @@
---
title: Control an Uncontrolled GPO
description: Control an Uncontrolled GPO
ms.assetid: dc81545c-8da5-4b6f-b266-f01a82e27c6b
author: jamiejdt
ms.assetid: dc81545c-8da5-4b6f-b266-f01a82e27c6b
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Control an Uncontrolled GPO

View File

@ -1,10 +1,15 @@
---
title: Controlled GPO Commands
description: Controlled GPO Commands
ms.assetid: 82db4772-154a-4a8d-99cd-2c69e1738698
author: jamiejdt
ms.assetid: 82db4772-154a-4a8d-99cd-2c69e1738698
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Controlled GPO Commands

View File

@ -1,10 +1,15 @@
---
title: Controlled GPO Commands
description: Controlled GPO Commands
ms.assetid: 370d3db9-4efc-4799-983d-e29ba5f32b07
author: jamiejdt
ms.assetid: 370d3db9-4efc-4799-983d-e29ba5f32b07
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Controlled GPO Commands

View File

@ -1,10 +1,15 @@
---
title: Controlled Tab
description: Controlled Tab
ms.assetid: 8995a9e1-ace4-40b7-a47b-e1e9924541ba
author: jamiejdt
ms.assetid: 8995a9e1-ace4-40b7-a47b-e1e9924541ba
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Controlled Tab

View File

@ -1,10 +1,15 @@
---
title: Create a New Controlled GPO
description: Create a New Controlled GPO
ms.assetid: f89eaae8-7858-4222-ba3f-a93a9d7ea5a3
author: jamiejdt
ms.assetid: f89eaae8-7858-4222-ba3f-a93a9d7ea5a3
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Create a New Controlled GPO

View File

@ -1,10 +1,15 @@
---
title: Create a New Controlled GPO
description: Create a New Controlled GPO
ms.assetid: 5ce760f6-9f05-42b4-b787-7835ab8e324e
author: jamiejdt
ms.assetid: 5ce760f6-9f05-42b4-b787-7835ab8e324e
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Create a New Controlled GPO

View File

@ -1,10 +1,15 @@
---
title: Create a New Controlled GPO
description: Create a New Controlled GPO
ms.assetid: b43ce0f4-4519-4278-83c4-c7d5163ddd11
author: jamiejdt
ms.assetid: b43ce0f4-4519-4278-83c4-c7d5163ddd11
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Create a New Controlled GPO

View File

@ -1,10 +1,15 @@
---
title: Create a Template
description: Create a Template
ms.assetid: 8208f14a-5c18-43a7-8564-118230398cca
author: jamiejdt
ms.assetid: 8208f14a-5c18-43a7-8564-118230398cca
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Create a Template

View File

@ -1,10 +1,15 @@
---
title: Create a Template
description: Create a Template
ms.assetid: b38423af-7d24-437a-98bc-01f1ae891127
author: jamiejdt
ms.assetid: b38423af-7d24-437a-98bc-01f1ae891127
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Create a Template

View File

@ -1,10 +1,15 @@
---
title: Create a Template
description: Create a Template
ms.assetid: 6992bd55-4a4f-401f-9815-c468bac598ef
author: jamiejdt
ms.assetid: 6992bd55-4a4f-401f-9815-c468bac598ef
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Create a Template

View File

@ -1,10 +1,15 @@
---
title: Creating a Template and Setting a Default Template
description: Creating a Template and Setting a Default Template
ms.assetid: acce0e0f-7e67-479c-9daa-e678fccd7ced
author: jamiejdt
ms.assetid: acce0e0f-7e67-479c-9daa-e678fccd7ced
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Creating a Template and Setting a Default Template

View File

@ -1,10 +1,15 @@
---
title: Creating a Template and Setting a Default Template
description: Creating a Template and Setting a Default Template
ms.assetid: ffa72c2a-64eb-4492-8072-c3a66179b546
author: jamiejdt
ms.assetid: ffa72c2a-64eb-4492-8072-c3a66179b546
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Creating a Template and Setting a Default Template

View File

@ -1,10 +1,15 @@
---
title: Creating a Template and Setting a Default Template
description: Creating a Template and Setting a Default Template
ms.assetid: 8771b4b5-4dea-4be1-a675-f60cfd3ec5dc
author: jamiejdt
ms.assetid: 8771b4b5-4dea-4be1-a675-f60cfd3ec5dc
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Creating a Template and Setting a Default Template

View File

@ -1,10 +1,15 @@
---
title: Creating, Controlling, or Importing a GPO
description: Creating, Controlling, or Importing a GPO
ms.assetid: ce8b232e-7758-4a6a-9e2f-18967da6cdad
author: jamiejdt
ms.assetid: ce8b232e-7758-4a6a-9e2f-18967da6cdad
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Creating, Controlling, or Importing a GPO

View File

@ -1,10 +1,15 @@
---
title: Creating, Controlling, or Importing a GPO
description: Creating, Controlling, or Importing a GPO
ms.assetid: f2c8bef5-b654-4864-99d4-9207cfb0a137
author: jamiejdt
ms.assetid: f2c8bef5-b654-4864-99d4-9207cfb0a137
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Creating, Controlling, or Importing a GPO

View File

@ -1,10 +1,15 @@
---
title: Creating, Controlling, or Importing a GPO
description: Creating, Controlling, or Importing a GPO
ms.assetid: 0cc1b6ee-3335-4d84-9e1c-d1aefabfef51
author: jamiejdt
ms.assetid: 0cc1b6ee-3335-4d84-9e1c-d1aefabfef51
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Creating, Controlling, or Importing a GPO

View File

@ -1,10 +1,15 @@
---
title: Creating, Controlling, or Importing a GPO
description: Creating, Controlling, or Importing a GPO
ms.assetid: 5259ce25-f570-4346-9f50-6b051724a998
author: jamiejdt
ms.assetid: 5259ce25-f570-4346-9f50-6b051724a998
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Creating, Controlling, or Importing a GPO

View File

@ -1,10 +1,15 @@
---
title: Creating or Controlling a GPO
description: Creating or Controlling a GPO
ms.assetid: ca2fa40e-c6e9-4c57-9da1-e5375df4a2fd
author: jamiejdt
ms.assetid: ca2fa40e-c6e9-4c57-9da1-e5375df4a2fd
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Creating or Controlling a GPO

View File

@ -1,10 +1,15 @@
---
title: Creating or Controlling a GPO
description: Creating or Controlling a GPO
ms.assetid: 807f3b3f-ad3d-4851-9772-7f54a065632a
author: jamiejdt
ms.assetid: 807f3b3f-ad3d-4851-9772-7f54a065632a
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Creating or Controlling a GPO

View File

@ -1,10 +1,15 @@
---
title: Delegate Access to a GPO
description: Delegate Access to a GPO
ms.assetid: f1d6bb6c-d5bf-4080-a6cb-32774689f804
author: jamiejdt
ms.assetid: f1d6bb6c-d5bf-4080-a6cb-32774689f804
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Delegate Access to a GPO

View File

@ -1,10 +1,15 @@
---
title: Delegate Access to an Individual GPO in the Archive
description: Delegate Access to an Individual GPO in the Archive
ms.assetid: 7b37b188-2b6b-4e52-be97-8ef899e9893b
author: jamiejdt
ms.assetid: 7b37b188-2b6b-4e52-be97-8ef899e9893b
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Delegate Access to an Individual GPO in the Archive

View File

@ -1,10 +1,15 @@
---
title: Delegate Access to an Individual GPO in the Archive
description: Delegate Access to an Individual GPO in the Archive
ms.assetid: 284d2aa2-7c10-4ffa-8978-bbe30867c1c1
author: jamiejdt
ms.assetid: 284d2aa2-7c10-4ffa-8978-bbe30867c1c1
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Delegate Access to an Individual GPO in the Archive

View File

@ -1,10 +1,15 @@
---
title: Delegate Access to an Individual GPO
description: Delegate Access to an Individual GPO
ms.assetid: b2a7d550-14bf-4b41-b6e4-2cc091eedd2d
author: jamiejdt
ms.assetid: b2a7d550-14bf-4b41-b6e4-2cc091eedd2d
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Delegate Access to an Individual GPO

View File

@ -1,10 +1,15 @@
---
title: Delegate Access to the Production Environment
description: Delegate Access to the Production Environment
ms.assetid: c1ebae2e-909b-4e64-b368-b7d3cc67b1eb
author: jamiejdt
ms.assetid: c1ebae2e-909b-4e64-b368-b7d3cc67b1eb
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Delegate Access to the Production Environment

View File

@ -1,10 +1,15 @@
---
title: Delegate Access to the Production Environment
description: Delegate Access to the Production Environment
ms.assetid: 4c670581-8c47-41ea-80eb-02846ff1ec1f
author: jamiejdt
ms.assetid: 4c670581-8c47-41ea-80eb-02846ff1ec1f
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Delegate Access to the Production Environment

View File

@ -1,10 +1,15 @@
---
title: Delegate Domain-Level Access to the Archive
description: Delegate Domain-Level Access to the Archive
ms.assetid: d232069e-71d5-4b4d-b22e-bef11de1cfd4
author: jamiejdt
ms.assetid: d232069e-71d5-4b4d-b22e-bef11de1cfd4
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Delegate Domain-Level Access to the Archive

View File

@ -1,10 +1,15 @@
---
title: Delegate Domain-Level Access to the Archive
description: Delegate Domain-Level Access to the Archive
ms.assetid: 11ca1d40-4b5c-496e-8922-d01412717858
author: jamiejdt
ms.assetid: 11ca1d40-4b5c-496e-8922-d01412717858
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Delegate Domain-Level Access to the Archive

View File

@ -1,10 +1,15 @@
---
title: Delegate Domain-Level Access
description: Delegate Domain-Level Access
ms.assetid: 64c8e773-38cc-4991-9ed2-5a801094d06e
author: jamiejdt
ms.assetid: 64c8e773-38cc-4991-9ed2-5a801094d06e
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Delegate Domain-Level Access

View File

@ -1,10 +1,15 @@
---
title: Delegate Management of a Controlled GPO
description: Delegate Management of a Controlled GPO
ms.assetid: 509b02e7-ce0b-4919-b58a-c3a33051152e
author: jamiejdt
ms.assetid: 509b02e7-ce0b-4919-b58a-c3a33051152e
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Delegate Management of a Controlled GPO

View File

@ -1,10 +1,15 @@
---
title: Delegate Management of a Controlled GPO
description: Delegate Management of a Controlled GPO
ms.assetid: 96b4bfb3-5657-4267-8326-85d7a0db87ce
author: jamiejdt
ms.assetid: 96b4bfb3-5657-4267-8326-85d7a0db87ce
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Delegate Management of a Controlled GPO

View File

@ -1,10 +1,15 @@
---
title: Delete a Controlled GPO
description: Delete a Controlled GPO
ms.assetid: f51c1737-c116-4faf-a6f6-c72303f60a3b
author: jamiejdt
ms.assetid: f51c1737-c116-4faf-a6f6-c72303f60a3b
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Delete a Controlled GPO

View File

@ -1,10 +1,15 @@
---
title: Delete a Controlled GPO
description: Delete a Controlled GPO
ms.assetid: 2a461018-aa0b-4ae3-b079-efc554ca4a3d
author: jamiejdt
ms.assetid: 2a461018-aa0b-4ae3-b079-efc554ca4a3d
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Delete a Controlled GPO

View File

@ -1,10 +1,15 @@
---
title: Delete a GPO
description: Delete a GPO
ms.assetid: 85fca371-5707-49c1-aa51-813fc3a58dfc
author: jamiejdt
ms.assetid: 85fca371-5707-49c1-aa51-813fc3a58dfc
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Delete a GPO

View File

@ -1,10 +1,15 @@
---
title: Delete a GPO
description: Delete a GPO
ms.assetid: 66be3dde-653e-4c25-8cb7-00e7090c8d31
author: jamiejdt
ms.assetid: 66be3dde-653e-4c25-8cb7-00e7090c8d31
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Delete a GPO

View File

@ -1,10 +1,15 @@
---
title: Deleting or Restoring a GPO
description: Deleting or Restoring a GPO
ms.assetid: ee4a467a-187a-48e3-8f0d-548de0606a56
author: jamiejdt
ms.assetid: ee4a467a-187a-48e3-8f0d-548de0606a56
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Deleting or Restoring a GPO

View File

@ -1,10 +1,15 @@
---
title: Deleting or Restoring a GPO
description: Deleting or Restoring a GPO
ms.assetid: d4f92f4d-eba7-4e6e-b166-13670864d298
author: jamiejdt
ms.assetid: d4f92f4d-eba7-4e6e-b166-13670864d298
ms.pagetype: mdop
ms.mktglfcycl: manage
ms.sitesec: library
ms.prod: w10
---
# Deleting or Restoring a GPO

Some files were not shown because too many files have changed in this diff Show More