Forum Discussion
Tomas_S_
Mar 30, 2023Copper Contributor
Allow access to basic authentication protocols
I have disabled the basic/legacy authentication methods from M365 admin center. If I run this command Get-OrganizationConfig | Select-Object -ExpandProperty DefaultAuthenticationPolicy | ForEach {...
- Mar 30, 2023The UI in Admin Center doesn't set the policies for those protocols. You can only set those with PowerShell, and I'd suggest you do it. Just modify the parameters in your default auth policy and block them.
When we block basic auth at the tenant level, we don't use Auth Policies, so a protocol can be blocked, even if the Auth Policy says it's enabled.
For the two you call out, RWS and OutlookService - we're going to block those too in the coming weeks and months.
VasilMichev
Mar 30, 2023MVP
That's something you (your tenant) is controlling via the corresponding Auth policy. The server-side controls are another layer on top of that, and only exposed via the BasicAuthBlockedApps property.
In any case, you can try toggling those off via Set-AuthenticationPolicy.
In any case, you can try toggling those off via Set-AuthenticationPolicy.