Skip to content

Instantly share code, notes, and snippets.

@Josh00
Last active December 11, 2018 11:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Josh00/48148af10e40452b5df332fa9d241094 to your computer and use it in GitHub Desktop.
Save Josh00/48148af10e40452b5df332fa9d241094 to your computer and use it in GitHub Desktop.
ADAL
◆ Exchange Online の先進認証について
【先進認証の設定状況を確認するコマンド】
Get-OrganizationConfig | fl OAuth2ClientProfileEnabled
<実行結果例>
OAuth2ClientProfileEnabled : False
【先進認証を有効にする】
Set-OrganizationConfig -OAuth2ClientProfileEnabled $true
【先進認証を無効にする】
Set-OrganizationConfig -OAuth2ClientProfileEnabled $false
@Josh00
Copy link
Author

Josh00 commented Dec 11, 2018

◆ Exchange Online の先進認証について
【先進認証の設定状況を確認するコマンド】

Get-OrganizationConfig | fl OAuth2ClientProfileEnabled
<実行結果例>
OAuth2ClientProfileEnabled : False

【先進認証を有効にする】
Set-OrganizationConfig -OAuth2ClientProfileEnabled $true

【先進認証を無効にする】
Set-OrganizationConfig -OAuth2ClientProfileEnabled $false

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment