获取当前用户的 Internet Explorer 代理配置
#Include <WinHttp.au3>
_WinHttpGetIEProxyConfigForCurrentUser()
None. |
成功: | 返回包含下方4个元素的数组: |
$array[0] - 当前用户指定"自动检查设置"进行IE代理配置时为1. | |
$array[1] - 当前用户的IE代理配置为指定"使用自动代理配置"时包含的自动配置的URL. | |
$array[2] - 当前用户的IE代理配置为指定"使用代理服务器"时包含的代理URL. | |
$array[3] - 可选绕过代理服务器的列表. | |
失败: | 返回 0 并设置 @error: |
1 - DllCall 失败 | |
2 - 内部错误. |
#AutoIt3Wrapper_AU3Check_Parameters=-d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6
#include "WinHttp.au3"
#include <Array.au3>
Opt("MustDeclareVars", 1)
; 用于当前用户的 Internet Explorer 代理配置:
Global $aIEproxy = _WinHttpGetIEProxyConfigForCurrentUser()
_ArrayDisplay($aIEproxy, "Internet Explorer proxy configuration")