Microsoft AD Spoke action – Is user in group fails without exact match Issue When using the "Is user in group" flow action if the Group name contains a space the action will not execute successfully. Without an exact match on name for the group the flow will fail and if the name is entered without spaces this will not match/match another group. Steps to reproduce: 1. Go to the flow designer action 2. Test it with the group samaccountname that contains spaces and a user samaccountname that exists in this group 3. Action returns 'Group name is Invalid'ResolutionThe fix for the issue is to change Powershell script's(ActionIsUserFromGroup.ps1) if condition to check for distinguished name, _______BEFORE___FIX_____________________ if ($userGroups -Match "CN=$groupname,") _______AFTER___FIX_____________________ if ($userGroups -Match $groupObject.distinguishedname)Related LinksThis issue is mentioned in PRB1542602. It is expected the target fix will be applied in the Tokyo version.