mirror of
https://github.com/MicrosoftDocs/windows-itpro-docs.git
synced 2025-05-21 09:47:22 +00:00
Merged PR 5750: 2/6 PM Publish
This commit is contained in:
commit
55ec1383de
@ -23,11 +23,7 @@ Windows 10, version 1709 (also known as the Fall Creators Update), introduces [W
|
|||||||
<span id="enable" />
|
<span id="enable" />
|
||||||
## Enable Windows Mixed Reality in WSUS
|
## Enable Windows Mixed Reality in WSUS
|
||||||
|
|
||||||
To enable users to download the Windows Mixed Reality software, enterprises using WSUS can approve Windows Mixed Reality package by unblocking the following KBs:
|
To enable users to download the Windows Mixed Reality software for devices running Windows 10, version 1703, enterprises using WSUS can approve Windows Mixed Reality package by unblocking **KB4016509: FeatureOnDemandOasis - Windows 10 version 1703 for x64-based Systems**.
|
||||||
|
|
||||||
- KB4016509: FeatureOnDemandOasis - Windows 10 version 1703 for x64-based Systems
|
|
||||||
- KB3180030: language packs
|
|
||||||
- KB3197985: language packs
|
|
||||||
|
|
||||||
Enterprises devices running Windows 10, version 1709, will not be able to install Windows Mixed Reality Feature on Demand (FOD) directly from WSUS. Instead, use one of the following options to install Windows Mixed Reality software:
|
Enterprises devices running Windows 10, version 1709, will not be able to install Windows Mixed Reality Feature on Demand (FOD) directly from WSUS. Instead, use one of the following options to install Windows Mixed Reality software:
|
||||||
|
|
||||||
|
@ -1389,6 +1389,27 @@ The DM agent for [push-button reset](https://msdn.microsoft.com/windows/hardware
|
|||||||
|
|
||||||
## Change history in MDM documentation
|
## Change history in MDM documentation
|
||||||
|
|
||||||
|
### February 2018
|
||||||
|
|
||||||
|
<table class="mx-tdBreakAll">
|
||||||
|
<colgroup>
|
||||||
|
<col width="25%" />
|
||||||
|
<col width="75%" />
|
||||||
|
</colgroup>
|
||||||
|
<thead>
|
||||||
|
<tr class="header">
|
||||||
|
<th>New or updated topic</th>
|
||||||
|
<th>Description</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr class="odd">
|
||||||
|
<td style="vertical-align:top">[VPNv2 ProfileXML XSD](vpnv2-profile-xsd.md)</td>
|
||||||
|
<td style="vertical-align:top"><p>Updated the XSD and Plug-in profile example for VPNv2 CSP.</p>
|
||||||
|
</td></tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
|
||||||
### January 2018
|
### January 2018
|
||||||
|
|
||||||
<table class="mx-tdBreakAll">
|
<table class="mx-tdBreakAll">
|
||||||
|
@ -7,7 +7,7 @@ ms.topic: article
|
|||||||
ms.prod: w10
|
ms.prod: w10
|
||||||
ms.technology: windows
|
ms.technology: windows
|
||||||
author: nickbrower
|
author: nickbrower
|
||||||
ms.date: 06/26/2017
|
ms.date: 02/05/2018
|
||||||
---
|
---
|
||||||
|
|
||||||
# ProfileXML XSD
|
# ProfileXML XSD
|
||||||
@ -31,6 +31,8 @@ Here's the XSD for the ProfileXML node in VPNv2 CSP for Windows 10 and some pro
|
|||||||
<xs:element name="DnsSuffix" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
<xs:element name="DnsSuffix" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
||||||
<xs:element name="TrustedNetworkDetection" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
<xs:element name="TrustedNetworkDetection" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
||||||
<xs:element name="LockDown" type="xs:boolean" minOccurs="0" maxOccurs="1"/>
|
<xs:element name="LockDown" type="xs:boolean" minOccurs="0" maxOccurs="1"/>
|
||||||
|
<xs:element name="DeviceTunnel" type="xs:boolean" minOccurs="0" maxOccurs="1"/>
|
||||||
|
<xs:element name="RegisterDNS" type="xs:boolean" minOccurs="0" maxOccurs="1"/>
|
||||||
<xs:element name="ByPassForLocal" type="xs:boolean" minOccurs="0" maxOccurs="1"/>
|
<xs:element name="ByPassForLocal" type="xs:boolean" minOccurs="0" maxOccurs="1"/>
|
||||||
<xs:element name="Proxy" minOccurs="0" maxOccurs="1">
|
<xs:element name="Proxy" minOccurs="0" maxOccurs="1">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
@ -46,6 +48,20 @@ Here's the XSD for the ProfileXML node in VPNv2 CSP for Windows 10 and some pro
|
|||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
|
|
||||||
|
<xs:element name="APNBinding" minOccurs="0" maxOccurs="1">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element name="ProviderId" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
||||||
|
<xs:element name="AccessPointName" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
||||||
|
<xs:element name="UserName" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
||||||
|
<xs:element name="Password" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
||||||
|
<xs:element name="IsCompressionEnabled" type="xs:boolean" minOccurs="0" maxOccurs="1"/>
|
||||||
|
<xs:element name="AuthenticationType" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
|
||||||
<xs:element name="DeviceCompliance" minOccurs="0" maxOccurs="1">
|
<xs:element name="DeviceCompliance" minOccurs="0" maxOccurs="1">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
@ -388,6 +404,8 @@ Here's the XSD for the ProfileXML node in VPNv2 CSP for Windows 10 and some pro
|
|||||||
<!--<EdpModeId>corp.contoso.com</EdpModeId>-->
|
<!--<EdpModeId>corp.contoso.com</EdpModeId>-->
|
||||||
<RememberCredentials>true</RememberCredentials>
|
<RememberCredentials>true</RememberCredentials>
|
||||||
<AlwaysOn>false</AlwaysOn>
|
<AlwaysOn>false</AlwaysOn>
|
||||||
|
<DeviceTunnel>false</DeviceTunnel>
|
||||||
|
<RegisterDNS>false</RegisterDNS>
|
||||||
<DnsSuffix>corp.contoso.com</DnsSuffix>
|
<DnsSuffix>corp.contoso.com</DnsSuffix>
|
||||||
<TrustedNetworkDetection>contoso.com,test.corp.contoso.com</TrustedNetworkDetection>
|
<TrustedNetworkDetection>contoso.com,test.corp.contoso.com</TrustedNetworkDetection>
|
||||||
<Proxy>
|
<Proxy>
|
||||||
@ -396,6 +414,14 @@ Here's the XSD for the ProfileXML node in VPNv2 CSP for Windows 10 and some pro
|
|||||||
</Manual>
|
</Manual>
|
||||||
<AutoConfigUrl>Helloworld.Com</AutoConfigUrl>
|
<AutoConfigUrl>Helloworld.Com</AutoConfigUrl>
|
||||||
</Proxy>
|
</Proxy>
|
||||||
|
<APNBinding>
|
||||||
|
<ProviderId></ProviderId>
|
||||||
|
<AccessPointName></AccessPointName>
|
||||||
|
<UserName></UserName>
|
||||||
|
<Password></Password>
|
||||||
|
<IsCompressionEnabled></IsCompressionEnabled>
|
||||||
|
<AuthenticationType></AuthenticationType>
|
||||||
|
</APNBinding>
|
||||||
</VPNProfile>
|
</VPNProfile>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -1485,7 +1485,11 @@ In the **Background Apps** area, you can choose which apps can run in the backgr
|
|||||||
|
|
||||||
To turn off **Let apps run in the background**:
|
To turn off **Let apps run in the background**:
|
||||||
|
|
||||||
- Turn off the feature in the UI for each app.
|
- In **Background apps**, set **Let apps run in the background** to **Off**.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
- In **Background apps**, turn off the feature for each app.
|
||||||
|
|
||||||
-or-
|
-or-
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user