Forum Discussion

MichalZiemba's avatar
Jan 14, 2021

missing MembershipRule in Get-AzureADMSGroup

I am using AzureAD module in version 2.0.2.118 and when I execute the command 

get-azureadmsgroup -Id 34298b62-bdb4-489b-9569-d3ad90af5d53|fl

I got only the following parameters:

Id                           : 34298b62-bdb4-489b-9569-d3ad90af5d53
OdataType                    : 
Description                  : 
OnPremisesSyncEnabled        : 
DisplayName                  : Group_name
OnPremisesLastSyncDateTime   : 
Mail                         : 
MailEnabled                  : False
MailNickname                 : acecce91-366d-4043-8c0c-4c8e54e26203
OnPremisesSecurityIdentifier : 
ProxyAddresses               : {}
SecurityEnabled              : True
GroupTypes                   : {DynamicMembership}
Visibility                   : 
CreatedDateTime              : 24.04.2019 13:06:17
RenewedDateTime              : 24.04.2019 13:06:17

Cannot get the MembershipRule property. 

Any tips or tricks on how to get it?

7 Replies

  • Peter5000's avatar
    Peter5000
    Copper Contributor

    MichalZiemba 

    I know this is an old topic but I recently encountered this issue, here's the steps I took to get membershiprule:

    • launch PowerShell as admin
    • Uninstall AzureADPreview

     

    uninstall-module -name azureadpreview

     

    • Install AzureADPreview version 2.0.2.62

     

    install-module azureadpreview -requiredversion 2.0.2.62

     

    • verify the correct version is installed

     

    get-installedmodule -name azureadpreview

     

    • run your commands prefixed with the module name

     

    AzureADPreview\connect-azuread
    AzureaADPreview\get-azureadmsgroup -All $true | select displayname, membershiprule

     

Resources