You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 2, 2026. It is now read-only.
In the revoke script for email authenticationMethod there is currently a bug present.
on line 196:
if ($actionContext.Configuration."$($actionContext.References.Permission.RemoveWhenRevokingEntitlement)" -eq $false) {
Schould be changed to:
if ($($actionContext.References.Permission.RemoveWhenRevokingEntitlement) -eq $false) {
In the revoke script for email authenticationMethod there is currently a bug present.
on line 196:$actionContext.Configuration."$ ($actionContext.References.Permission.RemoveWhenRevokingEntitlement)" -eq $false) {
if (
Schould be changed to:
if ($($actionContext.References.Permission.RemoveWhenRevokingEntitlement) -eq $false) {