5
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Visual Studioのサインインとプロキシ

Posted at

背景

Visual Studioのプロキシ環境(ID/パス有)下でのサインインに苦労したのでメモ。

サポートによる記述

ここを変えろと書いてあった。
C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\IDE

devenv.exe.config

上記ファイルの、のセクションの内側に下記を入れる。
<system.net>
<defaultProxy enabled="false" useDefaultCredentials="false">
<proxy bypassonlocal="True" usesystemdefault="false" proxyaddress="http://XX.XX.XX.XX:8080" />
</defaultProxy>
</system.net>

defaultProxy enabled="false"は、サポートにはtrueと書いてあるが、ID/パス入力時はfalseにすると良いらしい。

また、IEがデフォルトブラウザの場合、インターネットオプション->セキュリティ->信頼済みサイトで、「サイト」をクリックし、下記をWebサイト(信頼済みサイト)に加える。
https://www.microsoft.com

さらに、インターネットオプション->接続->LANの設定で、
「設定を自動的に検出する」にチェックを入れた。
(ただし、自動構成スクリプトを使用する、になっている為、LANにプロキシ サーバーを使用する、の環境の場合は不明。)

5
2
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
5
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?