Skip to content

Instantly share code, notes, and snippets.

@Josh00
Created December 11, 2018 11:51
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save Josh00/0a32cf04c9c7916c60396e0d1066dff8 to your computer and use it in GitHub Desktop.
◆ Skype for Business Online の先進認証について
【先進認証の設定状況を確認するコマンド】
<コマンド>
Get-CsOAuthConfiguration | fl ClientAdalAuthOverride
<実行結果例>
ClientAdalAuthOverride : Disallowed
<説明>
Skype for Business Online 側の先進認証が有効である場合には Allowed、無効である場合には Disallowed が返されます。
【先進認証を有効にする】
<コマンド>
Set-CsOAuthConfiguration -ClientAdalAuthOverride Allowed
【先進認証を無効にする】
<コマンド>
Set-CsOAuthConfiguration -ClientAdalAuthOverride Disallowed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment