Windows: UWP Traffic Through Proxy

 29th January 2021 at 9:31am

Windows HTTP Services (winhttp) 是一个 Windows 上的服务,可以对开发者屏蔽掉运行环境的代理启用情况。具体的细节我没有深究。

主要影响面可能有:

  • 影响 Microsoft Store 下载
  • 影响 UWP 应用的网络连接(未深入调研)
    • 之前用 netsh 指令设置好代理后,MineCraft for Windows 10 在访问游戏内商店的速度飞快
  • 影响使用 WinHTTP 库的应用程序连接网络
  • 可能影响 Windows Update(未深入调研)

配置代理的方式(需要管理员权限):

  • netsh winhttp set proxy 127.0.0.1:12759
  • netsh winhttp import proxy source=ie:从 IE 导入配置(即 Windows 系统的全局配置),但是对于 IE 用了 PAC 的情况无效

参考