LoginSignup
2
3

More than 3 years have passed since last update.

プロキシ接続環境でWindows Updateなどが行えない時の対処法

Posted at

はじめに

Windows設定からプロキシを設定した場合、Widoews Updateなどに接続できない場合あった。
コマンドプロンプトからWinhttpのプロキシ構成をすると解決した。

Winhttp 設定

netsh winhttp set proxy proxy-server =<プロキシ サーバー> bypass-list=<バイパス リスト>

実行例

netsh winhttp set proxy proxy-server="XXX.XXX.com:8080"

IEのプロキシ設定読み込む場合

netsh winhttp import proxy source=ie

Winhttp 設定確認コマンド

netsh winhttp show proxy

Winhttp 既定(直接アクセス)へリセットコマンド

netsh winhttp reset proxy

参考URL

2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3