Skip to content

Commit 871a0f1

Browse files
ProxyUpdate
1 parent 3f904f1 commit 871a0f1

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

azure-local/manage/configure-proxy-settings-23h2.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,14 @@ To configure the proxy settings for the Azure Stack HCI operating system, run th
5959
Here's an example of the command usage:
6060
6161
```powershell
62-
Set-WinInetProxy -ProxySettingsPerUser 0 -ProxyServer http://192.168.1.250:8080 -ProxyBypass "localhost;127.0.0.1;*.contoso.com;node1;node2;192.168.1.*;s-cluster"
62+
Set-WinInetProxy -ProxySettingsPerUser 0 -ProxyServer http://192.168.1.250:8080 -ProxyBypass "localhost,127.0.0.1,*.contoso.com,node1,node2,192.168.1.*,s-cluster"
6363
```
6464

6565
### WinInet proxy bypass list string considerations
6666

6767
When configuring the `WinInet` proxy bypass list, keep the following points in mind:
6868

69-
- Parameters must be separated with comma `,` or semicolon `;`.
69+
- Parameters must be separated with comma `,`.
7070
- CIDR notation to bypass subnets isn't supported.
7171
- Asterisk can be used as wildcards to bypass subnets or domain names. For example, `192.168.1.*` for subnets or `*.contoso.com` for domain names.
7272
- Proxy name must be specified with `http://` and the port. For example, `http://192.168.1.250:8080`.
@@ -83,7 +83,7 @@ When configuring the `WinInet` proxy bypass list, keep the following points in m
8383
Current WinHTTP proxy settings:
8484
8585
Proxy Server(s) : http://192.168.1.250:8080
86-
Bypass List : localhost;127.0.0.1;*. contoso.com;node1;node2;192.168.1.*;s-cluster
86+
Bypass List : localhost,127.0.0.1,*. contoso.com,node1,node2,192.168.1.*,s-cluster
8787
8888
PS C:\>
8989
```
@@ -125,14 +125,14 @@ The parameters are described in the following table:
125125
Here's an example of the command usage:
126126

127127
```powershell
128-
Set-winhttpproxy -proxyserver http://192.168.1.250:8080 -BypassList "localhost;127.0.0.1;*.contoso.com;node1;node2;192.168.1.*;s-cluster"
128+
Set-winhttpproxy -proxyserver http://192.168.1.250:8080 -BypassList "localhost,127.0.0.1,*.contoso.com,node1,node2,192.168.1.*,s-cluster"
129129
```
130130

131131
### WinHTTP proxy bypass list string considerations
132132

133133
When configuring the `WinHTTP` proxy bypass list string, keep the following points in mind:
134134

135-
- Parameters must be separated with comma `,` or semicolon `;`.
135+
- Parameters must be separated with comma `,`.
136136
- CIDR notation to bypass subnets isn't supported.
137137
- Asterisk can be used as wildcards to bypass subnets or domain names. For example, `192.168.1.*` for subnets or `*.contoso.com` for domain names.
138138
- Proxy name must be specified with `http://` and the port. For example, `http://192.168.1.250:8080`.
@@ -149,7 +149,7 @@ When configuring the `WinHTTP` proxy bypass list string, keep the following poin
149149
Current WinHTTP proxy settings:
150150
151151
Proxy Server(s) : http://192.168.1.250:8080
152-
Bypass List : localhost;127.0.0.1;*.contoso.com;node1;node2;192.168.1.*;s-cluster
152+
Bypass List : localhost,127.0.0.1,*.contoso.com,node1,node2,192.168.1.*,s-cluster
153153
154154
PS C:\>
155155
```

0 commit comments

Comments
 (0)