获取当前用户的IE代理信息
文章转自王牌软件
站长推荐:NSetup一键部署软件
一键式完成美化安装包制作,自动增量升级,数据统计,数字签名。应对各种复杂场景,脚本模块化拆分,常规复杂的脚本代码,图形化设置。无需专业的研发经验,轻松完成项目部署。(www.nsetup.cn)
只回答业务咨询
站长推荐:NSetup一键部署软件
一键式完成美化安装包制作,自动增量升级,数据统计,数字签名。应对各种复杂场景,脚本模块化拆分,常规复杂的脚本代码,图形化设置。无需专业的研发经验,轻松完成项目部署。(www.nsetup.cn)
WinHttpGetIEProxyConfigForCurrentUser 代理信息 WinHttp 服务 函数功能:获取当前用户的IE代理信息 c++: WINHTTP_CURRENT_USER_IE_PROXY_CONFIG proxyConfig; WinHttpGetIEProxyConfigForCurrentUser(&proxyConfig);
返回值: 成功则返回true 要注意的是: MSDN中说不要在服务中使用这个函数。
我在xp sp3和2003,2000 sp4的服务中使用了这个函数,情况如下(包括匿名代理和无代理的情况) 无代理: xp: OK 2003:OK 2000:服务崩溃
匿名代理: xp: 函数返回值为 true,正确读取代理信息 2003:函数返回值为 false,正确读取代理信息 2000:服务崩溃
所以在xp sp3中使用还没有发现问题,但是在其他环境中,就比较复杂了。所以还是按照msdn上描述的,不要在服务中使用 WinHttpGetIEProxyConfigForCurrentUser,用别的方法取代。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
#include "stdafx.h" #include <Windows.h> #include <Winhttp.h> using namespace std; void main() { WINHTTP_CURRENT_USER_IE_PROXY_CONFIG MyProxyConfig; if(!WinHttpGetIEProxyConfigForCurrentUser(&MyProxyConfig)) { //check the error DWORD Err = GetLastError(); cout << "WinHttpGetIEProxyConfigForCurrentUser failed with the following error number: " << Err << endl; switch (Err) { case ERROR_FILE_NOT_FOUND: cout << "The error is ERROR_FILE_NOT_FOUND" << endl; break; case ERROR_WINHTTP_INTERNAL_ERROR: cout << "ERROR_WINHTTP_INTERNAL_ERROR" << endl; break; case ERROR_NOT_ENOUGH_MEMORY: cout << "ERROR_NOT_ENOUGH_MEMORY" << endl; break; default: cout << "Look up error in header file." << endl; }//end switch }//end if else { //no error so check the proxy settings and free any strings cout << "Auto Detect is: " << MyProxyConfig.fAutoDetect << endl; if(NULL != MyProxyConfig.lpszAutoConfigUrl) { wcout << "AutoConfigURL is: " << MyProxyConfig.lpszAutoConfigUrl << endl; GlobalFree(MyProxyConfig.lpszAutoConfigUrl); } if(NULL != MyProxyConfig.lpszProxy) { wcout << "AutoConfigURL is: " << MyProxyConfig.lpszProxy << endl; GlobalFree(MyProxyConfig.lpszProxy); } if(NULL != MyProxyConfig.lpszProxyBypass) { wcout << "AutoConfigURL is: " << MyProxyConfig.lpszProxyBypass << endl; GlobalFree(MyProxyConfig.lpszProxyBypass); } }//end else cout << "finished!"; }//end main |
学习日记,兼职软件设计,软件修改,毕业设计。
本文出自 学习日记,转载时请注明出处及相应链接。
本文永久链接: https://www.softwareace.cn/?p=325