mirror of
https://github.com/MicrosoftDocs/windows-itpro-docs.git
synced 2025-06-15 10:23:37 +00:00
Removing Windows 10 Mobile and Windows Phone
This commit is contained in:
@ -15,21 +15,16 @@ manager: dansimp
|
||||
|
||||
The NetworkProxy configuration service provider (CSP) is used to configure a proxy server for ethernet and Wi-Fi connections. These settings do not apply to VPN connections. This CSP was added in Windows 10, version 1703.
|
||||
|
||||
> [!NOTE]
|
||||
> In Windows 10 Mobile, the NetworkProxy CSP only works in ethernet connections. Use the WiFi CSP to configure per-network proxy for Wi-Fi connections in mobile devices.
|
||||
|
||||
How the settings work:
|
||||
|
||||
<ol>
|
||||
<li>If auto-detect is enabled, the system tries to find the path to a proxy auto config (PAC) script and download it.</li>
|
||||
<li>If #1 fails and a setup script is specified, the system tries to download the explicitly configured PAC script.</li>
|
||||
<li>If #2 fails and a proxy server is specified, the system tries to use the explicitly configured proxy server.</li>
|
||||
<li>Otherwise, the system tries to reach the site directly.</li>
|
||||
</ol>
|
||||
|
||||
- If auto-detect is enabled, the system tries to find the path to a proxy auto config (PAC) script and download it.
|
||||
- If #1 fails and a setup script is specified, the system tries to download the explicitly configured PAC script.
|
||||
- If #2 fails and a proxy server is specified, the system tries to use the explicitly configured proxy server.
|
||||
- Otherwise, the system tries to reach the site directly.
|
||||
|
||||
The following shows the NetworkProxy configuration service provider in tree format.
|
||||
```
|
||||
|
||||
```console
|
||||
./Vendor/MSFT
|
||||
NetworkProxy
|
||||
----ProxySettingsPerUser
|
||||
@ -40,8 +35,9 @@ NetworkProxy
|
||||
--------Exceptions
|
||||
--------UseProxyForLocalAddresses
|
||||
```
|
||||
|
||||
<a href="" id="networkproxy"></a>**./Vendor/MSFT/NetworkProxy**
|
||||
The root node for the NetworkProxy configuration service provider..
|
||||
The root node for the NetworkProxy configuration service provider.
|
||||
|
||||
<a href="" id="proxysettingsperuser"></a>**ProxySettingsPerUser**
|
||||
Added in Windows 10, version 1803. When set to 0, it enables proxy configuration as global, machine wide.
|
||||
@ -55,10 +51,9 @@ Supported operations are Add, Get, Replace, and Delete.
|
||||
Automatically detect settings. If enabled, the system tries to find the path to a PAC script.
|
||||
|
||||
Valid values:
|
||||
<ul>
|
||||
<li>0 - Disabled</li>
|
||||
<li>1 (default) - Enabled</li>
|
||||
</ul>
|
||||
|
||||
- 0 - Disabled
|
||||
- 1 (default) - Enabled
|
||||
|
||||
The data type is integer. Supported operations are Get and Replace. Starting in Windows 10, version 1803, the Delete operation is also supported.
|
||||
|
||||
@ -84,17 +79,18 @@ The data type is string. Supported operations are Get and Replace. Starting in W
|
||||
|
||||
<a href="" id="useproxyforlocaladdresses"></a>**UseProxyForLocalAddresses**
|
||||
Specifies whether the proxy server should be used for local (intranet) addresses.
|
||||
|
||||
Valid values:
|
||||
<ul>
|
||||
<li>0 (default) - Use proxy server for local addresses</li>
|
||||
<li>1 - Do not use proxy server for local addresses</li>
|
||||
</ul>
|
||||
|
||||
- 0 (default) - Use proxy server for local addresses
|
||||
- 1 - Do not use proxy server for local addresses
|
||||
|
||||
The data type is integer. Supported operations are Get and Replace. Starting in Windows 10, version 1803, the Delete operation is also supported.
|
||||
|
||||
## Configuration Example
|
||||
|
||||
These generic code portions for the options **ProxySettingsPerUser**, **Autodetect**, and **SetupScriptURL** can be used for a specific operation, for example Replace. Only enter the portion of code needed in the **Replace** section.
|
||||
|
||||
```xml
|
||||
<Replace>
|
||||
<CmdID>1</CmdID>
|
||||
|
Reference in New Issue
Block a user