This read-only property specifies the addresses for which the proxy server is bypassed.
Syntax
IBuildServer.ProxyBypassAddresses
Remarks
This property is set by the fifth argument to the SetProxySettings method.
Example
The following example displays the addresses for which the proxy server is bypassed.
Option Explicit
On Error Resume Next
Dim objSearchAdmin, objBuildServer, ProxyAdd, ProxyBypass
Set objSearchAdmin = CreateObject("Search.SearchAdmin.1")
Set objBuildServer = objSearchAdmin.BuildServer
ProxyAdd = objBuildServer.ProxyAddress
If ProxyAdd = "" Then
Wscript.Echo "Proxy addressing is not used."
Else
ProxyBypass = objBuildServer.ProxyBypassAddressesList
If ProxyBypass <> "" Then
Wscript.Echo "The proxy server is bypassed For addresses:
Wscript.Echo ProxyBypass
End If
End If
...
'Release Objects
Set objBuildServer = Nothing
Set objSearchAdmin = Nothing
See Also