mirror of
https://github.com/MicrosoftDocs/windows-itpro-docs.git
synced 2025-05-12 13:27:23 +00:00
updated the group policy section in SetEduPolicies to include additional info from PM
This commit is contained in:
parent
3b6fc232bd
commit
83fa16c9a6
@ -113,7 +113,21 @@ Use one of these methods to set this policy.
|
|||||||

|

|
||||||
|
|
||||||
### Group Policy
|
### Group Policy
|
||||||
**SetEduPolicies** is not natively supported in Group Policy. Instead, use the [MDM Bridge WMI Provider](https://msdn.microsoft.com/en-us/library/windows/desktop/dn905224(v=vs.85).aspx) to set the policy in [MDM SharedPC](https://msdn.microsoft.com/en-us/library/windows/desktop/mt779129(v=vs.85).aspx).
|
**SetEduPolicies** is not natively supported in Group Policy. Instead, use the [MDM Bridge WMI Provider](https://msdn.microsoft.com/en-us/library/windows/desktop/dn905224(v=vs.85).aspx) to set the policy in [MDM SharedPC](https://msdn.microsoft.com/en-us/library/windows/desktop/mt779129(v=vs.85).aspx).
|
||||||
|
|
||||||
|
For example:
|
||||||
|
|
||||||
|
- Open PowerShell as an administrator and enter the following:
|
||||||
|
|
||||||
|
```
|
||||||
|
$sharedPC = Get-CimInstance -Namespace "root\cimv2\mdm\dmmap" -ClassName "MDM_SharedPC"
|
||||||
|
|
||||||
|
$sharedPC.SetEduPolicies = $True
|
||||||
|
|
||||||
|
Set-CimInstance -CimInstance $sharedPC
|
||||||
|
|
||||||
|
Get-CimInstance -Namespace $namespaceName -ClassName $MDM_SharedPCClass
|
||||||
|
```
|
||||||
|
|
||||||
### Provisioning tools
|
### Provisioning tools
|
||||||
- [Set up School PCs](use-set-up-school-pcs-app.md) always sets this policy in provisioning packages it creates.
|
- [Set up School PCs](use-set-up-school-pcs-app.md) always sets this policy in provisioning packages it creates.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user