From 31b2f746829621dd1a29c737517c5f2a867a3dbf Mon Sep 17 00:00:00 2001 From: Orlando Rodriguez <49177883+ojrb@users.noreply.github.com> Date: Sun, 25 Aug 2019 12:55:54 -0500 Subject: [PATCH] Update networkproxy-csp.md --- .../client-management/mdm/networkproxy-csp.md | 58 ++++++++++++++++++- 1 file changed, 55 insertions(+), 3 deletions(-) diff --git a/windows/client-management/mdm/networkproxy-csp.md b/windows/client-management/mdm/networkproxy-csp.md index 563f13334a..95d3ddc7c0 100644 --- a/windows/client-management/mdm/networkproxy-csp.md +++ b/windows/client-management/mdm/networkproxy-csp.md @@ -39,7 +39,7 @@ Added in Windows 10, version 1803. When set to 0, it enables proxy configuration Supported operations are Add, Get, Replace, and Delete. > [!Note] -> Per user proxy configuration setting is not supported. +> Per user proxy configuration setting is not supported using a configuration file, only modifying registry settings on local machine. **AutoDetect** Automatically detect settings. If enabled, the system tries to find the path to a PAC script. @@ -50,7 +50,7 @@ Valid values:
  • 1 (default) - Enabled
  • -The data type is int. Supported operations are Get and Replace. Starting in Window 10, version 1803, the Delete operation is also supported. +The data type is integer. Supported operations are Get and Replace. Starting in Window 10, version 1803, the Delete operation is also supported. **SetupScriptUrl** Address to the PAC script you want to use. @@ -80,4 +80,56 @@ Valid values:
  • 1 - Use proxy server for local addresses
  • -The data type is int. Supported operations are Get and Replace. Starting in Window 10, version 1803, the Delete operation is also supported. +The data type is integer. Supported operations are Get and Replace. Starting in Window 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 put the portion of code needed in the **Replace** section. + + + + 1 + + + ./Vendor/MSFT/NetworkProxy/ProxySettingsPerUser + + + int + text/plain + + 0 + + + + + + + 2 + + + ./Vendor/MSFT/NetworkProxy/AutoDetect + + + int + text/plain + + 1 + + + + + + + 3 + + + ./Vendor/MSFT/NetworkProxy/SetupScriptUrl + + + chr + text/plain + + Insert the proxy PAC URL location here: + + +