How to get all groups that a mail-contact belongs to?










2















This code will find all groups to which a particular email account or mail-user account belongs.



get-group | where-object -FilterScript $_.Members -contains $user


However, in O365 you can have mail-contacts who are not users - they are used just for mailing lists; they don't have a windowsliveid, so they won't be found in $_.Members.



How can I find all groups that a particular mail-contact belongs to?










share|improve this question






















  • Please check this link:How to get all groups that a user is a member of?

    – Lina
    Nov 15 '18 at 6:45











  • I'm working with Office365 online; I don't think I can use Active Directory powershell. Or at least, when I do, it connects me to my local AD.

    – bgmCoder
    Nov 15 '18 at 14:30











  • Also, the examples in that thread require a username. Mail-Contacts do not have a username.

    – bgmCoder
    Nov 15 '18 at 17:47















2















This code will find all groups to which a particular email account or mail-user account belongs.



get-group | where-object -FilterScript $_.Members -contains $user


However, in O365 you can have mail-contacts who are not users - they are used just for mailing lists; they don't have a windowsliveid, so they won't be found in $_.Members.



How can I find all groups that a particular mail-contact belongs to?










share|improve this question






















  • Please check this link:How to get all groups that a user is a member of?

    – Lina
    Nov 15 '18 at 6:45











  • I'm working with Office365 online; I don't think I can use Active Directory powershell. Or at least, when I do, it connects me to my local AD.

    – bgmCoder
    Nov 15 '18 at 14:30











  • Also, the examples in that thread require a username. Mail-Contacts do not have a username.

    – bgmCoder
    Nov 15 '18 at 17:47













2












2








2








This code will find all groups to which a particular email account or mail-user account belongs.



get-group | where-object -FilterScript $_.Members -contains $user


However, in O365 you can have mail-contacts who are not users - they are used just for mailing lists; they don't have a windowsliveid, so they won't be found in $_.Members.



How can I find all groups that a particular mail-contact belongs to?










share|improve this question














This code will find all groups to which a particular email account or mail-user account belongs.



get-group | where-object -FilterScript $_.Members -contains $user


However, in O365 you can have mail-contacts who are not users - they are used just for mailing lists; they don't have a windowsliveid, so they won't be found in $_.Members.



How can I find all groups that a particular mail-contact belongs to?







powershell office365






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 14 '18 at 23:22









bgmCoderbgmCoder

4,46373581




4,46373581












  • Please check this link:How to get all groups that a user is a member of?

    – Lina
    Nov 15 '18 at 6:45











  • I'm working with Office365 online; I don't think I can use Active Directory powershell. Or at least, when I do, it connects me to my local AD.

    – bgmCoder
    Nov 15 '18 at 14:30











  • Also, the examples in that thread require a username. Mail-Contacts do not have a username.

    – bgmCoder
    Nov 15 '18 at 17:47

















  • Please check this link:How to get all groups that a user is a member of?

    – Lina
    Nov 15 '18 at 6:45











  • I'm working with Office365 online; I don't think I can use Active Directory powershell. Or at least, when I do, it connects me to my local AD.

    – bgmCoder
    Nov 15 '18 at 14:30











  • Also, the examples in that thread require a username. Mail-Contacts do not have a username.

    – bgmCoder
    Nov 15 '18 at 17:47
















Please check this link:How to get all groups that a user is a member of?

– Lina
Nov 15 '18 at 6:45





Please check this link:How to get all groups that a user is a member of?

– Lina
Nov 15 '18 at 6:45













I'm working with Office365 online; I don't think I can use Active Directory powershell. Or at least, when I do, it connects me to my local AD.

– bgmCoder
Nov 15 '18 at 14:30





I'm working with Office365 online; I don't think I can use Active Directory powershell. Or at least, when I do, it connects me to my local AD.

– bgmCoder
Nov 15 '18 at 14:30













Also, the examples in that thread require a username. Mail-Contacts do not have a username.

– bgmCoder
Nov 15 '18 at 17:47





Also, the examples in that thread require a username. Mail-Contacts do not have a username.

– bgmCoder
Nov 15 '18 at 17:47












1 Answer
1






active

oldest

votes


















0














Well, likeafoxx over in reddit came up with a solution.



$contact = Get-Contact -Identity "<Contact's Name>"
Get-Group | Where-Object $_.Members -contains $contact


Apparently, if you catch the get-contact value into a variable, then get-group's $_.members can search for that. I was putting the string value for the name there, but that always turned up empty. This works like a charm.






share|improve this answer






















    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53310254%2fhow-to-get-all-groups-that-a-mail-contact-belongs-to%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    Well, likeafoxx over in reddit came up with a solution.



    $contact = Get-Contact -Identity "<Contact's Name>"
    Get-Group | Where-Object $_.Members -contains $contact


    Apparently, if you catch the get-contact value into a variable, then get-group's $_.members can search for that. I was putting the string value for the name there, but that always turned up empty. This works like a charm.






    share|improve this answer



























      0














      Well, likeafoxx over in reddit came up with a solution.



      $contact = Get-Contact -Identity "<Contact's Name>"
      Get-Group | Where-Object $_.Members -contains $contact


      Apparently, if you catch the get-contact value into a variable, then get-group's $_.members can search for that. I was putting the string value for the name there, but that always turned up empty. This works like a charm.






      share|improve this answer

























        0












        0








        0







        Well, likeafoxx over in reddit came up with a solution.



        $contact = Get-Contact -Identity "<Contact's Name>"
        Get-Group | Where-Object $_.Members -contains $contact


        Apparently, if you catch the get-contact value into a variable, then get-group's $_.members can search for that. I was putting the string value for the name there, but that always turned up empty. This works like a charm.






        share|improve this answer













        Well, likeafoxx over in reddit came up with a solution.



        $contact = Get-Contact -Identity "<Contact's Name>"
        Get-Group | Where-Object $_.Members -contains $contact


        Apparently, if you catch the get-contact value into a variable, then get-group's $_.members can search for that. I was putting the string value for the name there, but that always turned up empty. This works like a charm.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 16 '18 at 16:19









        bgmCoderbgmCoder

        4,46373581




        4,46373581





























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53310254%2fhow-to-get-all-groups-that-a-mail-contact-belongs-to%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            這個網誌中的熱門文章

            Barbados

            How to read a connectionString WITH PROVIDER in .NET Core?

            Node.js Script on GitHub Pages or Amazon S3