0
0

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.

認証関連での "No account identifier found in service during interactive flow" エラーの回避について

Posted at

これは何?

突然 Visual Studio の認証がうまくいかないと怒られまして、対処した内容です。
昔は問題なかった認証がうまくいかなくなった、そんな場合に役に立つかもしれません。
エラー コード 0x80090345 とか、0x80090034 とかその辺りが出ていたらワンチャンの模様。

手順

  1. レジストリエディタを起動し、下記パスに移動します。
    HKEY_LOCAL_MACHINE\Software\Microsoft\Cryptography\Protect\Providers\df9d8cd0-1501-11d1-8c7a-00c04fc297eb

  2. 下記レジストリを追加します。
    ProtectionPolicy (DWORD) : 1

  3. 問題となっている手順を行います。解決されていれば OK。
    ダメだったら再起動後再トライ。それでもだめならこの手順では対応できません。

手順の補足

問題が解消された後は当該レジストリを消しておきましょう。

何をしているのか

今回追加したレジストリは DPAPI のマスター キーをどこに置くかの設定です。
1 にすることによりローカルに保存される設定になります。

出典

[MS14-066]SChannel の脆弱性により、リモートでコードが実行される(2014 年 11 月 11 日)
image.png

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?