mirror of
https://github.com/MicrosoftDocs/windows-itpro-docs.git
synced 2025-06-16 19:03:46 +00:00
Merge branch 'master' of https://cpubwin.visualstudio.com/_git/it-client into microsoft-edge
This commit is contained in:
@ -25,7 +25,7 @@ ms.date: 10/30/2017
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://www.microsoft.com/en-us/education/buy-license/microsoft365/default.aspx" target="_blank">
|
||||
<a href="https://docs.microsoft.com/en-us/microsoft-365/education/deploy/top-10" target="_blank">
|
||||
<div class="cardSize">
|
||||
<div class="cardPadding">
|
||||
<div class="card">
|
||||
|
@ -10,7 +10,7 @@ ms.pagetype: edu
|
||||
ms.localizationpriority: medium
|
||||
author: lenewsad
|
||||
ms.author: lanewsad
|
||||
ms.date: 07/13/2018
|
||||
ms.date: 10/17/2018
|
||||
---
|
||||
|
||||
# What's in my provisioning package?
|
||||
@ -107,6 +107,22 @@ Set up School PCs uses the Universal app install policy to install school-releva
|
||||
* OneNote
|
||||
* Sway
|
||||
|
||||
## Provisioning time estimates
|
||||
The time it takes to install a package on a device depends on the:
|
||||
|
||||
* Strength of network connection
|
||||
* Number of policies and apps withim the package
|
||||
* Additional configurations made to the device
|
||||
|
||||
Review the table below to estimate your expected provisioning time. A package that only applies Set Up School PC's default configurations will provision the fastest. A package that removes pre-installed apps, through CleanPC, will take much longer to provision.
|
||||
|
||||
|Configurations |Connection type |Estimated provisioning time |
|
||||
|---------|---------|---------|
|
||||
|Default settings only | Wi-Fi | 3 to 5 minutes |
|
||||
|Default settings + apps | Wi-Fi | 10 to 15 minutes |
|
||||
|Default settings + remove pre-installed apps (CleanPC) | Wi-Fi | 60 minutes |
|
||||
|Default settings + other settings (Not CleanPC) | Wi-Fi | 5 minutes |
|
||||
|
||||
## Next steps
|
||||
Learn more about setting up devices with the Set up School PCs app.
|
||||
* [Azure AD Join with Set up School PCs](set-up-school-pcs-azure-ad-join.md)
|
||||
|
@ -154,23 +154,26 @@ To set up a test account through Windows Configuration Designer, follow these st
|
||||
|
||||
4. Follow the steps in [Apply a provisioning package](https://technet.microsoft.com/en-us/itpro/windows/configure/provisioning-apply-package) to apply the package that you created.
|
||||
|
||||
### Set up a test account in Group Policy
|
||||
To set up a test account using Group Policy, first create a Powershell script that configures the test account and assessment URL, and then create a scheduled task to run the script.
|
||||
### Set up a tester account in Group Policy
|
||||
To set up a tester account using Group Policy, first create a Powershell script that configures the tester account and assessment URL, and then create a scheduled task to run the script.
|
||||
|
||||
#### Create a PowerShell script
|
||||
This sample PowerShell script configures the test account and the assessment URL. Edit the sample to:
|
||||
This sample PowerShell script configures the tester account and the assessment URL. Edit the sample to:
|
||||
|
||||
- Use your assessment URL for **$obj.LaunchURI**
|
||||
- Use your test account for **$obj.TesterAccount**
|
||||
- Use your test account for **-UserName**
|
||||
- Use your tester account for **$obj.TesterAccount**
|
||||
- Use your tester account for **-UserName**
|
||||
|
||||
```
|
||||
$obj = get-wmiobject -namespace root/cimv2/mdm/dmmap -class MDM_SecureAssessment -filter "InstanceID='SecureAssessment' AND ParentID='./Vendor/MSFT'";
|
||||
$obj.LaunchURI='http://www.foo.com';
|
||||
$obj.TesterAccount='TestAccount';
|
||||
$obj.put()
|
||||
Set-AssignedAccess -AppUserModelId Microsoft.Windows.SecureAssessmentBrowser_cw5n1h2txyewy!App -UserName TestAccount
|
||||
```
|
||||
>[!NOTE]
|
||||
>The account that you specify for the tester account must already exist on the device.
|
||||
|
||||
```
|
||||
$obj = get-wmiobject -namespace root/cimv2/mdm/dmmap -class MDM_SecureAssessment -filter "InstanceID='SecureAssessment' AND ParentID='./Vendor/MSFT'";
|
||||
$obj.LaunchURI='http://www.foo.com';
|
||||
$obj.TesterAccount='TestAccount';
|
||||
$obj.put()
|
||||
Set-AssignedAccess -AppUserModelId Microsoft.Windows.SecureAssessmentBrowser_cw5n1h2txyewy!App -UserName TestAccount
|
||||
```
|
||||
|
||||
#### Create a scheduled task in Group Policy
|
||||
1. Open the Group Policy Management Console.
|
||||
|
Reference in New Issue
Block a user